ambevar-dotfiles/.local/bin/worldtime

17 lines
316 B
Plaintext
Raw Normal View History

2017-05-31 23:03:09 +02:00
#!/bin/sh
set -- \
UTC '' \
Europe/Paris "France Germany Sweden" \
Asia/Calcutta India \
Indian/Mauritius Mauritius \
Africa/Tunis Tunisia \
Asia/Ho_Chi_Minh Vietnam \
Australia/Melbourne Melbourne \
Africa/Nairobi Uganda \
while [ $# -gt 0 ]; do
TZ="$1" date "+%a %b %e %H:%M:%S %Z %Y%t$2"
shift 2
done