Simple Ping test script

This is lame script for just to serve quick purpose.

| pingtest.sh
#!/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