Add US/Pacific time zone
[khome.git] / home / bin / time-in-zones
CommitLineData
d1ea2498
SK
1#! /bin/bash
2
3set -e
4
3c478e37 5ZONES='
feb8402f 6 US/Pacific
3c478e37
SK
7 US/Eastern
8 Europe/Rome
9 Poland
10 NZ
11'
d1ea2498
SK
12
13for tz in $ZONES
14do
15 printf '%s ' "$tz"
16 TZ="$tz" date '+%a %b %d %H:%M:%S'
17done \
18| column -t
This page took 0.04988 seconds and 4 git commands to generate.