Skip to content

Instantly share code, notes, and snippets.

@jerodsanto
Created June 21, 2010 16:36
Show Gist options
  • Save jerodsanto/447113 to your computer and use it in GitHub Desktop.
Save jerodsanto/447113 to your computer and use it in GitHub Desktop.
#!/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