Last active
March 7, 2026 23:42
-
-
Save ibLeDy/85acaa785a87eae9cfaedc7f7634b7fc to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| i=${1:-10} ; while [ $i -gt 0 ]; do echo $i seconds remaining; i=`expr $i - 1`; sleep 1; done |
Author
Author
Edit: Use argument or default value
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Source: https://www.linuxquestions.org/questions/linux-newbie-8/countdown-timer-for-linux-949463/
grep "by schneidz; 06-11-2012 at 07:03 AM"