Handle tmux -S in status
[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/Mountain
9 US/Eastern
10 Europe/Warsaw
11 Europe/Samara
12 Asia/Manila
13 NZ
14)
15
16for tz in ${ZONES[*]}
17do
18 printf '%s ' "$tz"
19 TZ="$tz" date '+%a %b %d %H:%M:%S'
20done \
21| column -t
This page took 0.023106 seconds and 4 git commands to generate.