6428f8d814ab435da2bebfaff0cb0987b8f6c383
[khome.git] / home / bin / time-in-zones
1 #! /bin/bash
2
3 set -e
4
5 ZONES='US/Eastern Europe/Rome Poland NZ'
6
7 for tz in $ZONES
8 do
9 printf '%s ' "$tz"
10 TZ="$tz" date '+%a %b %d %H:%M:%S'
11 done \
12 | column -t
This page took 0.070565 seconds and 3 git commands to generate.