#!/bin/csh -fxv
# This version has an interesting bug!!! 
# E. g. This does not work: find -name 'fi*' -print
if ( $#argv == 0 ) then
	/usr/ucb/find $*
	exit
endif
if ( ! -d $1 ) then
	/usr/ucb/find . $*
	exit
endif
/usr/ucb/find $*
