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