Created
March 1, 2018 19:00
-
-
Save stevepaulo/4b567085d55b8e74e7a79af5fbfc4b77 to your computer and use it in GitHub Desktop.
Countdown timer in terminal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MIN=10 && for i in $(seq $(($MIN*60)) -1 1); do printf "\r%02d:%02d:%02d" $((i/3600)) $(( (i/60)%60)) $((i%60)); sleep 1; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment