pinchflat/slow.sh
2024-04-11 13:24:00 -07:00

8 lines
138 B
Bash
Executable file

#!/bin/bash
# Runs for N seconds
for i in {1..15}; do
echo "Slow script running for $i seconds"
sleep 1
done
echo "Slow script done"