Skip to content

Instantly share code, notes, and snippets.

@DeflateAwning
Last active July 9, 2020 16:25
Show Gist options
  • Save DeflateAwning/8ac34bc0bb89846c430f3341b8e610db to your computer and use it in GitHub Desktop.
Save DeflateAwning/8ac34bc0bb89846c430f3341b8e610db to your computer and use it in GitHub Desktop.
Check Internet Connection
# Unix/Max
ping www.google.com -i 1 | while read pong; do echo "$(date +%Y-%m-%d_%H:%M:%S): $pong"; done | grep --line-buffered timeout
# Windows (through cygwin or Git Bash)
ping www.google.com -n 500000 | while read pong; do echo "$(date +%Y-%m-%d_%H:%M:%S): $pong"; done | grep --line-buffered timed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment