X-Git-Url: https://git.xandkar.net/?a=blobdiff_plain;f=home%2Fbin%2Ftime-in-zones;h=cd6ab8eb10eb6782603c15d484ba502afb9df0fd;hb=b3a26007671a28c1a5043cd39947db36dee1394b;hp=aa7840717304bf8453d6e65a2d453bb4e5fbe2c6;hpb=3c478e37ea2443f97f611ef10ab265ce4c7bda9f;p=khome.git diff --git a/home/bin/time-in-zones b/home/bin/time-in-zones index aa78407..cd6ab8e 100755 --- a/home/bin/time-in-zones +++ b/home/bin/time-in-zones @@ -2,14 +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'