Created
January 29, 2016 04:40
-
-
Save hanksudo/4afea69545571b4373bb to your computer and use it in GitHub Desktop.
Check if GitHub is down
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/sh | |
if curl -s -o /dev/null -I http://github.com; then | |
echo " 🐈 It's up. Go back to work!" | |
else | |
echo " 🦄 It's down. Go outside!" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment