Subject: where is limfree defined?
To: None <rhialto@polder.ubc.kun.nl>
From: Bruce Albrecht <bruce@zuhause.mn.org>
List: current-users
Date: 01/23/1996 22:55:01
Olaf writes:
Mike Long <mike.long@analog.com> wrote:
> Type:
>
> find /usr/src/sys -name '*.c' -exec grep '^limfree' '{}' /dev/null \;
>
> to find out.
This shows, IMHO, the need for a -R flag for grep, something which
I've felt wanting many times.
So far, I haven't seen anyone suggest the following:
grep '^limfree' `find /usr/src/sys -name '*.c' -print `
Is there some reason why this is worse than using a construct like
find | xargs | grep ?