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