Created
February 24, 2012 01:05
-
-
Save a-warner/1896416 to your computer and use it in GitHub Desktop.
Is it your month to drink for free at Ant?
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 | |
if [ ! $# -gt 0 ]; then echo "Usage: $0 <Name>"; exit 1; fi | |
curl "http://antarcticabar.com/NameNight.html" 2> /dev/null | grep -oi "$1" | wc -l | awk '{ if ($1 > 0) { print "Your month" } else {print "Nope"} }' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment