Files
cloudy/scripts/wait.sh
T
2024-02-28 10:33:15 +08:00

14 lines
160 B
Bash
Executable File

#!/bin/bash
x="$1"
[[ -z "$x" ]] && x=5
printf "\n\nWaiting for things to start"
while [ $x -gt 0 ]
do
printf "."
sleep 1
x=$(( $x - 1 ))
done
echo "."