Skip to content

Instantly share code, notes, and snippets.

@lukasbestle
Created December 28, 2012 13:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukasbestle/4397678 to your computer and use it in GitHub Desktop.
Save lukasbestle/4397678 to your computer and use it in GitHub Desktop.
Countdown using sh
#!/bin/bash
i="10"
while [ $i -gt -1 ]
do
echo $i
echo -e "\007"
sleep 1
i=$[$i-1]
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment