#!/bin/csh -f
#  

if ( -f /usr/sbin/ping ) then
	/usr/sbin/ping  $1
else if( -f /etc/ping ) then
	/etc/ping  $1
else if( -f /usr/etc/ping ) then
	/usr/etc/ping $1
else
	set x=`which ping` >& /dev/null
	if( $status == 0 ) then
		ping $
	else	
		echoErr "ping command not found. Modify .myping"
		exit 1
	endif	
endif
