Skip to content

Instantly share code, notes, and snippets.

@frnkst
Last active July 24, 2017 10:36
Show Gist options
  • Save frnkst/fddf56637ce08325e032fab918e1100d to your computer and use it in GitHub Desktop.
Save frnkst/fddf56637ce08325e032fab918e1100d to your computer and use it in GitHub Desktop.
Check if you are online or not
#!/bin/bash
wget -q --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