I have had to do this several times, usually when trying to find in what files a variable or a function is used.
I remember using xargs with grep in the past to do this, but I am wondering if there are any easier ways.
|
|
|
|
|
|
|
Replace |
||
|
|
|
The portable method
|
||
|
|
|
|
If you're looking for a string match, use
which is faster than using grep. More about the subject here: http://www.mkssoftware.com/docs/man1/grep.1.asp |
||
|
|
|
|
I suggest changing the answer to:
The -r switch doesn't indicate regular expression. It tells grep to recurse into the directory provided. |
||
|
|
|
|
This is one of the cases for which I've started using ack (http://petdance.com/ack/) in lieu of grep. From the site, you can get instructions to install it as a Perl CPAN component, or you can get a self-contained version that can be installed without dealing with dependencies. Besides the fact that it defaults to recursive searching, it allows you to use Perl-strength regular expressions, use regex's to choose files to search, etc. It has an impressive list of options. I recommend visiting the site and checking it out. I've found it extremely easy to use, and there are tips for integrating it with vi(m), emacs, and even TextMate if you use that. |
||
|
|
|
|
If you use the zsh shell you can use
or
This can run out of steam if there are too many matching files. The canonical way though is to use find with exec.
or
The 'type f' bit just means type of file and will match all files. |
||
|
|
|
|
grep -r if you're using GNU grep, which comes with most Linux distros. On most UNIXes it's not installed by default so try this instead: find . -type f | xargs grep regex |
||
|
|