Created
January 26, 2013 00:03
-
-
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
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/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