Created
August 1, 2014 01:59
-
-
Save rinx/c099299936e102b3e4e4 to your computer and use it in GitHub Desktop.
if it's friday, show beer icon
This file contains hidden or 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/sh | |
beer="\xf0\x9f\x8d\xba" | |
if [ `date +"%w"` == "5" ]; then | |
echo -n $beer | sed -e 's/^-n//' | |
fi | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment