#!/bin/csh -f
set DIR="~"
if ( -d $1 ) then
	find $argv:q
	exit 0
endif
echo Search beginning at directory:  $DIR
find $DIR $argv:q
exit 0
