Add US/Mountain to my list of zones
[khome.git] / home / bin / time-in-zones
index 9cfa054..bfb265f 100755 (executable)
@@ -2,16 +2,18 @@
 
 set -e
 
-ZONES='
+declare -a ZONES=(
+    UTC
     US/Pacific
+    US/Mountain
     US/Eastern
-    Europe/Rome
-    Poland
-    Asia/Calcutta
+    Europe/Warsaw
+    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.026664 seconds and 4 git commands to generate.