Created
July 22, 2013 13:44
-
-
Save mattorb/6053924 to your computer and use it in GitHub Desktop.
one-liner to check when dev center is back and say something (bash)
This file contains 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
while true; do if `curl -m 15 https://developer.apple.com/devcenter/ios/index.action | grep -v --quiet "maintenance"`; then say "dev center is back online"; fi; sleep 60; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment