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