Skip to content

Instantly share code, notes, and snippets.

@a-warner
Created February 24, 2012 01:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save a-warner/1896416 to your computer and use it in GitHub Desktop.
Save a-warner/1896416 to your computer and use it in GitHub Desktop.
Is it your month to drink for free at Ant?
#!/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