aping() { # aping: beep when ping fails (reverse behavior of `ping -a
`) local address="$1" while true; do if ping -c 1 $address; then : else printf "\a" fi sleep 1 done }