Last active
July 9, 2020 16:25
-
-
Save DeflateAwning/8ac34bc0bb89846c430f3341b8e610db to your computer and use it in GitHub Desktop.
Check Internet Connection
This file contains hidden or 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
# 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