command-line world clock? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T11:27:57Z http://stackoverflow.com/feeds/question/370075 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/370075/command-line-world-clock 2 command-line world clock? AnC 2008-12-15T23:39:23Z 2009-09-11T09:55:46Z <p>Is there a script to display a simple world clock (time in various places around the world) on a *nix terminal?</p> <p>I was thinking of writing a quick Python script, but I have a feeling that's gonna be more work than I think (e.g. due to config and output format) - not to mention reinventing the wheel...</p> http://stackoverflow.com/questions/370075/command-line-world-clock/370100#370100 1 Answer by Chris Cameron for command-line world clock? Chris Cameron 2008-12-15T23:48:56Z 2008-12-15T23:48:56Z <p>If you do still want to write it in Python, consider Pytz:</p> <p><a href="http://pytz.sourceforge.net/" rel="nofollow">http://pytz.sourceforge.net/</a></p> <p>Their front page shows you many simple ways to accomplish what you're looking for.</p> <p>That said, I'm sure if you spent a few minutes on Google you'd find tons of scripts, some that even launch graphical programs for *nix. The first list of results for "python world clock" seem to suggest this alone.</p> http://stackoverflow.com/questions/370075/command-line-world-clock/370105#370105 9 Answer by Dustin for command-line world clock? Dustin 2008-12-15T23:50:55Z 2008-12-15T23:50:55Z <p>I have this bourne shell script:</p> <pre><code>#!/bin/sh PT=`env TZ=US/Pacific date` CT=`env TZ=US/Central date` AT=`env TZ=Australia/Melbourne date` echo "Santa Clara $PT" echo "Central $CT" echo "Melbourne $AT" </code></pre> http://stackoverflow.com/questions/370075/command-line-world-clock/370121#370121 4 Answer by Jonathan Leffler for command-line world clock? Jonathan Leffler 2008-12-15T23:59:24Z 2008-12-16T01:01:10Z <p>Never thought of it, but not dreadfully hard to do.</p> <pre><code>#!/bin/sh # Command-line world clock : ${WORLDCLOCK_ZONES:=$HOME/etc/worldclock.zones} : ${WORLDCLOCK_FORMAT:='+%Y-%m-%d %H:%M:%S %Z'} while read zone do echo $zone '!' $(TZ=$zone date "$WORLDCLOCK_FORMAT") done &lt; $WORLDCLOCK_ZONES | awk -F '!' '{ printf "%-20s %s\n", $1, $2;}' </code></pre> <p>Given the input file:</p> <pre><code>US/Pacific Europe/London Europe/Paris Asia/Kolkatta Africa/Johannesburg Asia/Tokyo Asia/Shanghai </code></pre> <p>I got the output:</p> <pre><code>US/Pacific 2008-12-15 15:58:57 PST Europe/London 2008-12-15 23:58:57 GMT Europe/Paris 2008-12-16 00:58:57 CET Asia/Kolkatta 2008-12-15 23:58:57 GMT Africa/Johannesburg 2008-12-16 01:58:57 SAST Asia/Tokyo 2008-12-16 08:58:57 JST Asia/Shanghai 2008-12-16 07:58:57 CST </code></pre> <p>I was fortunate that this took less than a second to run and didn't cross a 1-second boundary.</p> <p>(<em>I didn't notice that Kolkatta failed and defaulted to GMT. My system still has Asia/Calcutta as the entry for India.</em>)</p> http://stackoverflow.com/questions/370075/command-line-world-clock/370748#370748 0 Answer by AnC for command-line world clock? AnC 2008-12-16T08:57:29Z 2008-12-16T08:57:29Z <p>Many thanks for this! I wish I could vote (or comment) without registering.</p> <blockquote> <p>That said, I'm sure if you spent a few minutes on Google you'd find tons of scripts, some that even launch graphical programs for *nix.</p> </blockquote> <p>FWIW, I did google - but I specifically wanted something without a GUI, which turned out to be hard to find.</p> http://stackoverflow.com/questions/370075/command-line-world-clock/618313#618313 0 Answer by mivk for command-line world clock? mivk 2009-03-06T10:10:01Z 2009-03-06T10:10:01Z <p>I use this, which is basically the same as the other suggestions, except it filters on specific zones you want to see:</p> <pre><code>#!/bin/sh # Show date and time in other time zones search=$1 zoneinfo=/usr/share/zoneinfo/posix/ format='%a %F %T' find $zoneinfo -type f \ | grep -i "$search" \ | while read z do d=$(TZ=$z date +"$format") printf "%-34s %23s\n" ${z#$zoneinfo} "$d" done </code></pre> <p>Sample output:</p> <pre><code>$ /usr/local/bin/wdate bang Africa/Bangui Fri 2009-03-06 11:04:24 Asia/Bangkok Fri 2009-03-06 17:04:24 </code></pre>