head	1.1;
access;
symbols;
locks; strict;
comment	@# @;


1.1
date	92.12.23.22.03.40;	author mao;	state Exp;
branches;
next	;


desc
@grep the source tree for a particular string
@


1.1
log
@Initial revision
@
text
@case $# in 
1)  : ;;
*)	echo 'Specify pattern'
	exit 1
	;;
esac

gfind .  -name '*.[hclyg]*' -print | 
	xargs egrep "$1"
@
