X-Git-Url: https://git.xandkar.net/?a=blobdiff_plain;f=home%2Fbin%2Ftime-in-zones;h=a84c7d2ed1ed12a6e2533d0cb0d39fb9aca54208;hb=5fa0aef6c13f63fef6f46d0fe75f2bf689aa1ef5;hp=12d8220098d83a74422e53037fe9aac619e09b08;hpb=feb8402f44e2f4a8f7b777489e51605695261e87;p=khome.git diff --git a/home/bin/time-in-zones b/home/bin/time-in-zones index 12d8220..a84c7d2 100755 --- a/home/bin/time-in-zones +++ b/home/bin/time-in-zones @@ -2,15 +2,20 @@ set -e -ZONES=' +declare -a ZONES=( + UTC US/Pacific + US/Mountain US/Eastern - Europe/Rome - Poland + Europe/Warsaw + Europe/Kyiv + Europe/Moscow + Europe/Samara + Asia/Manila NZ -' +) -for tz in $ZONES +for tz in ${ZONES[*]} do printf '%s ' "$tz" TZ="$tz" date '+%a %b %d %H:%M:%S'