Add aping audible ping tool
This commit is contained in:
parent
5eb94d830e
commit
d73734401e
|
@ -0,0 +1,11 @@
|
|||
aping() { # aping: beep when ping fails (reverse behavior of `ping -a <address>`)
|
||||
local address="$1"
|
||||
while true; do
|
||||
if ping -c 1 $address; then
|
||||
:
|
||||
else
|
||||
printf "\a"
|
||||
fi
|
||||
sleep 1
|
||||
done
|
||||
}
|
Loading…
Reference in New Issue