Skip to content

Instantly share code, notes, and snippets.

@antonini
Forked from krohne/countdown.sh
Created July 26, 2019 22:57
Show Gist options
  • Save antonini/120e4b45436f19beb8a24dcfaff87215 to your computer and use it in GitHub Desktop.
Save antonini/120e4b45436f19beb8a24dcfaff87215 to your computer and use it in GitHub Desktop.
Countdown timer in bash shell script
#!/bin/bash
# $1 = # of seconds
# $@ = What to print after "Waiting n seconds"
countdown() {
secs=$1
shift
msg=$@
while [ $secs -gt 0 ]
do
printf "\r\033[KWaiting %.d seconds $msg" $((secs--))
sleep 1
done
echo
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment