Skip to content

Instantly share code, notes, and snippets.

@mahiuchun
Created October 29, 2012 00:05
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 mahiuchun/3970545 to your computer and use it in GitHub Desktop.
Save mahiuchun/3970545 to your computer and use it in GitHub Desktop.
Simple Shell Script to Count Down
#!/bin/sh
EVENT_DAY='2013-06-04'
INTERVAL=60
while true
do
S1=`date '+%s'`
S2=`date -d $EVENT_DAY '+%s'`
REMAINS=`expr '(' $S2 '-' $S1 ')' '/' 86400`
clear
echo $REMAINS 'Day(s) Left'
sleep $INTERVAL
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment