head     1.1;
access   ;
symbols  ;
locks    bin:1.1;
comment  @@;


1.1
date     91.06.10.14.15.22;  author bin;  state Exp;
branches ;
next	;


desc
@initial version prov by hal
@



1.1
log
@Initial revision
@
text
@# makefind - search kernel and driver Makefiles for a pattern
for f in `cat /usr/sys/ker.src`
do
  if grep -n $1 $f/M* 2> /dev/null
  then
  	echo $f/M*
  fi
done
@
