command-line world clock? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T11:27:57Zhttp://stackoverflow.com/feeds/question/370075http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/370075/command-line-world-clock2command-line world clock?AnC2008-12-15T23:39:23Z2009-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#3701001Answer by Chris Cameron for command-line world clock?Chris Cameron2008-12-15T23:48:56Z2008-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#3701059Answer by Dustin for command-line world clock?Dustin2008-12-15T23:50:55Z2008-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#3701214Answer by Jonathan Leffler for command-line world clock?Jonathan Leffler2008-12-15T23:59:24Z2008-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 < $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#3707480Answer by AnC for command-line world clock?AnC2008-12-16T08:57:29Z2008-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#6183130Answer by mivk for command-line world clock?mivk2009-03-06T10:10:01Z2009-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>