Skip to content

Instantly share code, notes, and snippets.

@zaxtax
Created October 30, 2020 00:12
Show Gist options
  • Save zaxtax/6e2c0a38cdaa0dde204b055e84685989 to your computer and use it in GitHub Desktop.
Save zaxtax/6e2c0a38cdaa0dde204b055e84685989 to your computer and use it in GitHub Desktop.
#!/bin/sh
TT=`env TZ=Asia/Tokyo date`
ST=`env TZ=Asia/Singapore date`
BT=`env TZ=Europe/Berlin date`
LT=`env TZ=Europe/London date`
ET=`env TZ=America/New_York date`
PT=`env TZ=US/Pacific date`
HT=`env TZ=Pacific/Honolulu date`
DT=`env TZ=Etc/GMT+12 date`
echo "Tokyo $TT"
echo "Singapore $ST"
echo "Berlin $BT"
echo "London $LT"
echo "New York $ET"
echo "Los Angeles $PT"
echo "Honolulu $HT"
echo "AOE $DT"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment