Created
June 21, 2010 16:36
-
-
Save jerodsanto/447113 to your computer and use it in GitHub Desktop.
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/bash | |
while : | |
do | |
echo "Checking for iOS 4.0..." | |
curl -s -L http://phobos.apple.com/version | grep -i Restore | grep -i iPhone | grep -i 4.0 | |
if [ "$?" = "1" ]; then | |
echo "Nothing yet..." | |
else | |
say "FOUR POINT OH FIRMWARE IS NOW AVAILABLE" | |
fi | |
sleep 30 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment