From: Siraaj Khandkar Date: Thu, 28 Oct 2021 04:45:22 +0000 (-0400) Subject: Switch Rome to Moscow X-Git-Url: https://git.xandkar.net/?p=khome.git;a=commitdiff_plain;h=521807a502ba9c29f5e0a71bc7790c76f177563e Switch Rome to Moscow --- diff --git a/home/bin/time-in-zones b/home/bin/time-in-zones index 9cfa054..cd6ab8e 100755 --- a/home/bin/time-in-zones +++ b/home/bin/time-in-zones @@ -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'