Got the terminal working

This commit is contained in:
Michel Roegl-Brunner
2025-09-09 16:03:17 +02:00
parent bd7a85789b
commit 030cd9ec9a
14 changed files with 1860 additions and 149 deletions

14
scripts/test-script.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/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!"