]> code.delx.au - monosys/blob - dates
lib-ext-backup
[monosys] / dates
1 #!/bin/bash
2
3 list="
4 America/Los_Angeles
5 America/Chicago
6 America/New_York
7 Europe/London
8 UTC
9 Asia/Ho_Chi_Minh
10 Australia/Perth
11 Australia/Sydney
12 "
13
14 for tz in $list; do
15 printf "%-25s" "$tz"
16 TZ="$tz" date
17 echo
18 done
19