Sorry I missed the original, but try rgrep = recursive grep.
Willie
> Robert> Also, is there a way to perform a comprehensive search for
> Robert> a particular text string throughout a directory structure?
> Robert> Sort of like a global grep command....as opposed to using
> Robert> grep on one file at a time...
>
>Personally I use "M-x grep-find" under Emacs, which makes this
>relatively easy. Otherwise you can have some incantation using
>find(1), something like this:-
>
>find . -type f -print | xargs grep -n -e string-to-find | less
>
>If you only wanted to search C files and not object files for example,
>you might use this instead:-
>
>find . -name \*.c -type f -print | xargs grep -n -e string-to-find | less
--
PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
To unsubscribe: mail [EMAIL PROTECTED] with
"unsubscribe" as the Subject.