From owner-freebsd-hackers Mon Jan 22 15:55:15 1996 Return-Path: owner-hackers Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id PAA01471 for hackers-outgoing; Mon, 22 Jan 1996 15:55:15 -0800 (PST) Received: from rover.village.org (rover.village.org [198.137.146.49]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id PAA01466 for ; Mon, 22 Jan 1996 15:55:09 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by rover.village.org (8.6.11/8.6.6) with SMTP id QAA01113; Mon, 22 Jan 1996 16:54:20 -0700 Message-Id: <199601222354.QAA01113@rover.village.org> To: Wolfram Schneider Subject: Re: recursive grep Cc: hackers@FreeBSD.org In-reply-to: Your message of Mon, 22 Jan 1996 16:16:55 +0100 Date: Mon, 22 Jan 1996 16:54:20 -0700 From: Warner Losh Sender: owner-hackers@FreeBSD.org Precedence: bulk : I would like add options for recursive searching : (grep -R foo /usr/include). find /usr/local | xargs grep foo Why do we need another wart on grep? Especially when what you may want is find /usr/local -name \*f.h | xargs grep foo :-) Warner