home
/
code
/
khome.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Add bin/websrv
[khome.git]
/
home
/
bin
/
time-in-zones
1
#! /bin/bash
2
3
set -e
4
5
declare -a
ZONES
=(
6
UTC
7
US
/
Pacific
8
US
/
Mountain
9
US
/
Eastern
10
Europe
/
Warsaw
11
Europe
/
Kyiv
12
Europe
/
Moscow
13
Europe
/
Samara
14
Asia
/
Manila
15
NZ
16
)
17
18
for
tz
in
${ZONES[*]}
19
do
20
printf
'%s '
"
$tz
"
21
TZ
=
"
$tz
"
date
'+%a %b %d %H:%M:%S'
22
done
\
23
|
column
-t
This page took
0.092612 seconds
and
4
git commands to generate.