Skip to content

Instantly share code, notes, and snippets.

@rinx
Created August 1, 2014 01:59
Show Gist options
  • Save rinx/c099299936e102b3e4e4 to your computer and use it in GitHub Desktop.
Save rinx/c099299936e102b3e4e4 to your computer and use it in GitHub Desktop.
if it's friday, show beer icon
#!/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