Skip to content

Instantly share code, notes, and snippets.

@dcai
Forked from Goles/cliclock.sh
Created December 18, 2013 05:58
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 dcai/8017891 to your computer and use it in GitHub Desktop.
Save dcai/8017891 to your computer and use it in GitHub Desktop.
World clock
#!/bin/sh
# Command-line world clock
# Taken from http://stackoverflow.com/questions/370075/command-line-world-clock
# .worldclock.zones file looks like:
# US/Pacific
# Europe/Berlin
# Chile/Continental
: ${WORLDCLOCK_ZONES:=$HOME/.worldclock.zones}
: ${WORLDCLOCK_FORMAT:='+%Y-%m-%d %H:%M:%S %Z'}
if [ ! -f "$WORLDCLOCK_ZONES" ]; then
echo 'Australia/Sydney
Asia/Shanghai
Asia/Tokyo
Europe/London
Europe/Paris
US/Pacific
US/Eastern' > $WORLDCLOCK_ZONES
fi
while true
do
clear
while read zone
do echo $zone '!' $(TZ=$zone date "$WORLDCLOCK_FORMAT")
done < $WORLDCLOCK_ZONES |
awk -F '!' '{ printf "%-20s %s\n", $1, $2;}'
sleep 1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment