#!/bin/bash /sbin/ping -c 3 yahoo.com if [ $? -eq 0 ] then echo "Pinging" else echo "Not Pinging - Restarting Network" /etc/init.d/network restart fi