bfb265fb9120d784a64076f92a3ff4f317dfc3f8
[khome.git] / home / bin / time-in-zones
1 #! /bin/bash
2
3 set -e
4
5 declare -a ZONES=(
6 UTC
7 US/Pacific
8 US/Mountain
9 US/Eastern
10 Europe/Warsaw
11 Europe/Samara
12 Asia/Manila
13 NZ
14 )
15
16 for tz in ${ZONES[*]}
17 do
18 printf '%s ' "$tz"
19 TZ="$tz" date '+%a %b %d %H:%M:%S'
20 done \
21 | column -t
This page took 0.064667 seconds and 3 git commands to generate.