Skip to content

Instantly share code, notes, and snippets.

@jmbarbier
Created January 26, 2013 00:03
Show Gist options
  • Save jmbarbier/4639024 to your computer and use it in GitHub Desktop.
Save jmbarbier/4639024 to your computer and use it in GitHub Desktop.
Un petit bout de programme qui joue (en utilisant mpg321 par ex.) un morceau de musique dès qu'une adresse pingue. Pour être prévenu du retour de sa ligne ADSL ou de la sortie de bug d'un serveur. Juin 2008
#!/bin/sh
# Args : site à pinguer, joue le morceau de musique $MP3ZIC
# dès que ça pingue...
PINGRES="Start"
MP3ZIC="bourrin.mp3"
until [[ $PINGRES == "" ]]; do
PINGRES=`ping -c 1 $1 2>&1 | grep nknown`
echo ">> Pinged => $PINGRES"
sleep 2
done
mpg321 $MP3ZIC
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment