Skip to content

Instantly share code, notes, and snippets.

@hanksudo
Created January 29, 2016 04:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hanksudo/4afea69545571b4373bb to your computer and use it in GitHub Desktop.
Save hanksudo/4afea69545571b4373bb to your computer and use it in GitHub Desktop.
Check if GitHub is down
#!/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