Skip to content

Instantly share code, notes, and snippets.

@hugomaiavieira
Last active September 28, 2015 05:27
Show Gist options
  • Save hugomaiavieira/1391206 to your computer and use it in GitHub Desktop.
Save hugomaiavieira/1391206 to your computer and use it in GitHub Desktop.
Script para verificar se a internet voltou. Quando volta, toca um alarme.
# Verify it a website is back, or the internet access is back. When it is back,
# an alarm rings.
#
# Depends of ticktimer: https://github.com/algorich/ticktimer
#
# Author: Hugo Maia Vieira <hugomaiavieira@gmail.com>
#
while :
do
wget -q -O /dev/null http://www.google.com.br
if [ "$?" == 0 ]
then
ticktimer 0:1
break
fi
# wait for 1 minute to try again
sleep 3600
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment