#!/bin/bash echo ping $HOSTNAME every $TIMEOUT sec while true; do ping -c 1 $HOSTNAME; sleep $TIMEOUT; done;