Skip to content

Instantly share code, notes, and snippets.

@philfreo
Created June 10, 2013 22:02
Show Gist options
  • Save philfreo/5752798 to your computer and use it in GitHub Desktop.
Save philfreo/5752798 to your computer and use it in GitHub Desktop.
Notify you when the Apple Dev Center is back online
while true; do
curl --silent --head https://developer.apple.com/membercenter/ | grep --silent maintenance
if [ $? -eq 0 ]; then; break; fi
sleep 3
done
say "Apple Developer Center is Now Online";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment