Last active
October 5, 2015 21:04
-
-
Save raulmoyareyes/bca65f749aa415ca7bfd to your computer and use it in GitHub Desktop.
Check your internet connection.
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
#!/bin/bash | |
wget -q --tries=10 --timeout=20 --spider http://google.com | |
if [[ $? -eq 0 ]]; then | |
echo "Online" | |
else | |
echo "Offline" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment