Skip to content

Instantly share code, notes, and snippets.

@adkatrit
Created March 22, 2014 03:32
Show Gist options
  • Save adkatrit/9700694 to your computer and use it in GitHub Desktop.
Save adkatrit/9700694 to your computer and use it in GitHub Desktop.
Internet detection via say
#Usage: netz google.com
function netz(){
while :; do ping -W1 -c1 -n $1 > /dev/null && say "internet alert"; sleep 1; done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment