mirror of
https://github.com/community-scripts/ProxmoxVE-Local.git
synced 2026-07-22 05:33:03 -04:00
15 lines
268 B
Bash
Executable File
15 lines
268 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Hello from test script!"
|
|
echo "Current directory: $(pwd)"
|
|
echo "Script arguments: $@"
|
|
echo "Environment variables:"
|
|
env | grep -E "(PATH|HOME|USER)" | head -5
|
|
|
|
for i in {1..5}; do
|
|
echo "Count: $i"
|
|
sleep 1
|
|
done
|
|
|
|
echo "Test script completed!"
|