#!/bin/sh if [ "X${1}" = "X" ]; then DEST=yahoo.com else DEST=${1} fi while true; do RANDTIME=`${HOME}/bin/randy 30` wget -O - http://en.wikipedia.org/wiki/Special:Random > /dev/null # ping -c 1 ${DEST} echo "Waiting ${RANDTIME} seconds..." echo "" sleep $RANDTIME done