Files
ProxmoxVE-Local/scripts/test-script.sh
Michel Roegl-Brunner 030cd9ec9a Got the terminal working
2025-09-09 16:03:17 +02:00

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!"