-
-
Save bauglir/1447665 to your computer and use it in GitHub Desktop.
Decided I really dislike the 0x format for hours in the current presentation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
source /home/duckworth/.local_zshrc | |
CHICAGO_HOUR=`date +"%k"` | |
TZ_ORIGINAL=$TZ | |
export TZ='Europe/Amsterdam' | |
EUROPE_HOUR=`date +"%k"` | |
export TZ_ORIGINAL=$TZ | |
echo "It's now $CHICAGO_HOUR o'clock in Chicago and $EUROPE_HOUR o'clock in Europe" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment