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