#!/bin/csh -fxv
#!/bin/csh -f
#This version searches the present directory if no search path is given.
#Error checking should be added.
if ( -d $1 ) then
	find $argv:q
else
	find . $argv:q
endif
