Subject: Re: goto netbsd
To: Bang Jun-Young <junyoung@mogua.com>
From: Luke Mewburn <lukem@wasabisystems.com>
List: netbsd-advocacy
Date: 09/06/2002 10:51:25
On Thu, Sep 05, 2002 at 01:08:17PM +0900, Bang Jun-Young wrote:
  | > > $ find /usr/src -name '*.c' | xargs grep goto | wc -l

shouldn't that be
	grep -w
or even faster
	fgrep -w
?

that way you'll skip the string "goto" when it appears as part of a
longer word.