find in conjuction with grep

Alexander Dalloz alexander.dalloz at uni-bielefeld.de
Wed Aug 11 18:43:10 UTC 2004


Am Mi, den 11.08.2004 schrieb Kevin Old um 20:31:

> I've been using
> find . -exec grep "phrase I want" {} \;

Not the best way. Using -exec is problematic.

> for quite a while to search recursively through directories and files
> to find a phrase or word.
> 
> The results I get back are simply the line(s) that contained the
> phrase, but no path or filename.

find . -print0 | xargs -0 grep "string"

> I'd thought about the -name flag, but I can't seem to figure out how
> to use it, though it is more for using to search for file names rather
> than display the name, it seems.

find /path/to/search/under -name "*string*"

will find all object names with "string" anywhere in, like "stringfoo"
or "foostringbar" or just "string".

> Kevin

Alexander


-- 
Alexander Dalloz | Enger, Germany | GPG key 1024D/ED695653 1999-07-13
Fedora GNU/Linux Core 2 (Tettnang) kernel 2.6.7-1.494.2.2smp 
Serendipity 20:40:56 up 7 days, 14:08, load average: 4.07, 3.31, 2.20 
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 189 bytes
Desc: Dies ist ein digital signierter Nachrichtenteil
URL: <http://listman.redhat.com/archives/fedora-list/attachments/20040811/1d1a408f/attachment-0001.sig>


More information about the fedora-list mailing list