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