Switch Rome to Moscow
authorSiraaj Khandkar <siraaj@khandkar.net>
Thu, 28 Oct 2021 04:45:22 +0000 (00:45 -0400)
committerSiraaj Khandkar <siraaj@khandkar.net>
Thu, 28 Oct 2021 04:45:22 +0000 (00:45 -0400)
home/bin/time-in-zones

index 9cfa054..cd6ab8e 100755 (executable)
@@ -2,16 +2,17 @@
 
 set -e
 
-ZONES='
+declare -a ZONES=(
     US/Pacific
     US/Eastern
-    Europe/Rome
+    Europe/Moscow
+    #Europe/Rome
     Poland
     Asia/Calcutta
     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.024193 seconds and 4 git commands to generate.