Add Kyiv and Moscow time zones
[khome.git] / home / bin / time-in-zones
index 9cfa054..a84c7d2 100755 (executable)
@@ -2,16 +2,20 @@
 
 set -e
 
-ZONES='
+declare -a ZONES=(
+    UTC
     US/Pacific
+    US/Mountain
     US/Eastern
-    Europe/Rome
-    Poland
-    Asia/Calcutta
+    Europe/Warsaw
+    Europe/Kyiv
+    Europe/Moscow
+    Europe/Samara
+    Asia/Manila
     NZ
-'
+)
 
-for tz in $ZONES
+for tz in ${ZONES[*]}
 do
     printf '%s ' "$tz"
     TZ="$tz" date '+%a %b %d %H:%M:%S'
This page took 0.030588 seconds and 4 git commands to generate.