#!/bin/sh echo ping ${HOSTNAME:=localhost} every ${TIMEOUT:=300} sec while true; do ping -c 1 ${HOSTNAME}; sleep ${TIMEOUT}; done;