Add US/Pacific time zone
[khome.git] / home / bin / time-in-zones
... / ...
CommitLineData
1#! /bin/bash
2
3set -e
4
5ZONES='
6 US/Pacific
7 US/Eastern
8 Europe/Rome
9 Poland
10 NZ
11'
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.026008 seconds and 4 git commands to generate.