Skip to content

Instantly share code, notes, and snippets.

#!/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;