From 521807a502ba9c29f5e0a71bc7790c76f177563e Mon Sep 17 00:00:00 2001 From: Siraaj Khandkar Date: Thu, 28 Oct 2021 00:45:22 -0400 Subject: [PATCH] Switch Rome to Moscow --- home/bin/time-in-zones | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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' -- 2.20.1