#!/bin/sh 
#
# file find el cheapo thing.
#
#	ff fn  SP 
#
# fn is file spec. SP defaults to . if unspecified. 
#
FN=$1
SP=$2

if [ X${FN} = "X" ] ; then
	echo "Try: ff fs   path   (path defaults to .)"
	exit
fi
if [ X${SP} = "X" ] ; then
	SP="."
fi

/usr/bin/find ${SP} -name "$FN" -print
