Files
nixos/home/.local/usr/bin/baraction.sh
2025-08-15 17:44:24 -04:00

8 lines
107 B
Bash
Executable File

SLEEP_SEC=5
COUNT=0
while :; do
let COUNT=$COUNT+1
echo -e " HELLO $COUNT"
sleep $SLEEP_SEC
done