X-Git-Url: https://git.xandkar.net/?a=blobdiff_plain;f=home%2Fbin%2Ftime-in-zones;h=bfb265fb9120d784a64076f92a3ff4f317dfc3f8;hb=1cbcd78facb72fef9eb038ffe9237d427875791d;hp=aa7840717304bf8453d6e65a2d453bb4e5fbe2c6;hpb=3c478e37ea2443f97f611ef10ab265ce4c7bda9f;p=khome.git diff --git a/home/bin/time-in-zones b/home/bin/time-in-zones index aa78407..bfb265f 100755 --- a/home/bin/time-in-zones +++ b/home/bin/time-in-zones @@ -2,14 +2,18 @@ set -e -ZONES=' +declare -a ZONES=( + UTC + US/Pacific + US/Mountain US/Eastern - Europe/Rome - Poland + Europe/Warsaw + 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'