for i in `find . -print`
do
	if test -f $i
	then
		grep '#ident	"@(#)ihvkit:display/doit	1.1"' $i > /dev/null 2>&1
		if [ $? -ne 0 ]
		then
			echo "Not found in $i"
		else
			echo "Found in $i"
		fi
	fi
done
