home
/
code
/
khome.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Concentrate tmux status info where it's more visually useful
[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
/
Samara
12
Asia
/
Manila
13
NZ
14
)
15
16
for
tz
in
${ZONES[*]}
17
do
18
printf
'%s '
"
$tz
"
19
TZ
=
"
$tz
"
date
'+%a %b %d %H:%M:%S'
20
done
\
21
|
column
-t
This page took
0.068123 seconds
and
4
git commands to generate.