X-Git-Url: https://git.xandkar.net/?a=blobdiff_plain;f=home%2Fbin%2Ftime-in-zones;h=cd6ab8eb10eb6782603c15d484ba502afb9df0fd;hb=15cddcbb410da3299bc341ddd4c04926b3757f89;hp=9cfa0544d7608673e0d556a4a4943157359b9934;hpb=8fb0a17fcfe2c2317f0ea60609af314e2d934d3d;p=khome.git 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'