Skip to content

Instantly share code, notes, and snippets.

@mtabini
Forked from jsjohnst/gist:80726
Created March 17, 2009 19:29
Show Gist options
  • Save mtabini/80730 to your computer and use it in GitHub Desktop.
Save mtabini/80730 to your computer and use it in GitHub Desktop.
#!/bin/bash
while true; do
result=`curl -Is http://developer.apple.com/iphone/ | grep Location | grep comebacksoon`;
if [ x = "x$result" ]; then
say 'Yeah!';
exit;
fi;
sleep 30;
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment