#!/bin/sh trap '{ exit 0; }' INT while true; do ping -c3 "${1:-gentoo.org}" && env BEEP_MSG="online again" beep && break sleep 1 done