Got the terminal working
This commit is contained in:
14
scripts/test-script.sh
Executable file
14
scripts/test-script.sh
Executable 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!"
|
||||
Reference in New Issue
Block a user