[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-developers] Re:find command
- Subject: Re: [cobalt-developers] Re:find command
- From: Dave Love <dlove@xxxxxxxxxx>
- Date: Fri Oct 6 11:30:53 2000
- List-id: Mailing list for developers on Cobalt Networks products <cobalt-developers.list.cobalt.com>
Just an FYI: If you filter out the error messages for files you don't have permission to access, 'find' is much more useful:
$ find / -name locate 2>/dev/null
/usr/bin/locate
- Dave
On Thursday, October 5, 2000, at 08:28 AM, sara starre wrote:
Find is a weird command - doesnt work very well, and normally you have to
grep the result like
find . somefile | grep somefile
-PG