Add Asia/Calcutta (India) to list of TZs to display
[khome.git] / home / bin / time-in-zones
1 #! /bin/bash
2
3 set -e
4
5 ZONES='
6 US/Pacific
7 US/Eastern
8 Europe/Rome
9 Poland
10 Asia/Calcutta
11 NZ
12 '
13
14 for tz in $ZONES
15 do
16 printf '%s ' "$tz"
17 TZ="$tz" date '+%a %b %d %H:%M:%S'
18 done \
19 | column -t
This page took 0.04541 seconds and 4 git commands to generate.