Last active
March 30, 2016 23:00
-
-
Save lonelyelk/64768e88c2fd02992aade0838f4e235f to your computer and use it in GitHub Desktop.
Fast and furious ping routine to detect if Internet is accessible or a computer is online.
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 | |
cnt=${2:-3} | |
to=${3:-1} | |
rcvd=$(set -o pipefail; timeout $to ping -A -s16 -c$cnt -q $1 2> /dev/null | grep received | awk -F', ' '{print $2}' | awk '{print $1}') | |
if [[ $? != 0 || $cnt != $rcvd ]]; then | |
exit 1 | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Usage: