Add Kyiv and Moscow time zones
[khome.git] / home / bin / time-in-zones
... / ...
CommitLineData
1#! /bin/bash
2
3set -e
4
5declare -a ZONES=(
6 UTC
7 US/Pacific
8 US/Mountain
9 US/Eastern
10 Europe/Warsaw
11 Europe/Kyiv
12 Europe/Moscow
13 Europe/Samara
14 Asia/Manila
15 NZ
16)
17
18for tz in ${ZONES[*]}
19do
20 printf '%s ' "$tz"
21 TZ="$tz" date '+%a %b %d %H:%M:%S'
22done \
23| column -t
This page took 0.022455 seconds and 4 git commands to generate.