Skip to content

Instantly share code, notes, and snippets.

@SystemZ
Created October 28, 2015 21:33
Show Gist options
  • Save SystemZ/cc92e44e405fe9d4b3fc to your computer and use it in GitHub Desktop.
Save SystemZ/cc92e44e405fe9d4b3fc to your computer and use it in GitHub Desktop.
Check Internet status by Google DNS query
#!/bin/bash
ping -c 1 -s 1 -W 1 8.8.8.8 1>/dev/null 2>&1
if [ $? -eq 0 ]; then
echo "ok"
elif [ $? -ne 0 ]; then
echo "bad"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment