vote up 16 vote down star
12

I'm looking for the string "foo=" (without quotes) in text files in a directory tree. It's on a common Linux machine, I have bash shell:

grep -ircl "foo=" *

In the directories are also many binary files which match "foo=". As these results are not relevant and slow down the search, I want grep to skip searching these files (mostly JPEG and PNG images): how would I do that?

I know there are the --exclude=PATTERN and --include=PATTERN options, but what is the pattern format? manpage of grep says:

--include=PATTERN     Recurse in directories only searching file matching PATTERN.
--exclude=PATTERN     Recurse in directories skip file matching PATTERN.

Searching on grep include, grep include exclude, grep exclude and variants did not find anything relevant

If there's a better way of grepping only in certain files, I'm all for it; moving the offending files is not an option, I can't search only certain directories (the directory structure is a big mess, with everything everywhere). Also, I can't install anything, so I have to do with common tools (like grep or the suggested find).

UPDATES: @Adam Rosenfield's answer is just what I was looking for:

grep -ircl --exclude=*.{png,jpg} "foo=" *

@rmeador's answer is also a good solution:

grep -Ir --exclude="*\.svn*" "pattern" *

It searches recursively, ignores binary files, and doesn't look inside Subversion hidden folders.(...)

flag

Just FYI, the arguments used: -c count the matches in file -i case-insensitive -l only show matching files -r recursive – Piskvor Oct 21 '08 at 13:56
2  
A quicker way to exclude svn dirs is --exclude-dir=.svn, so grep doesn't go into them at all – orip Dec 2 at 10:14

11 Answers

vote up 8 vote down check

I use the following to grep source trees successfully:

grep pattern -r --include=*.{cpp,h} rootdir

I haven't used --exclude, but I assume the syntax is the same.

link|flag
That's exactly what I was looking for, thanks =) – Piskvor Oct 21 '08 at 17:58
vote up 9 vote down

If you just want to skip binary files, I suggest you look at the -I option. It ignores binary files. I regularly use the following command:

grep -rI --exclude="*\.svn*" "pattern" *

It searches recursively, ignores binary files, and doesn't look inside Subversion hidden folders, for whatever pattern I want. I have it aliased as "grepsvn" on my box at work.

link|flag
Thanks, that's very useful for some other scenarios I've encountered. – Piskvor Oct 21 '08 at 14:28
vote up 8 vote down

Please take a look at ack, which is designed for exactly these situations. Your example of

grep -ircl --exclude=*.{png,jpg} "foo=" *

is done with ack as

ack -icl "foo="

because ack never looks in binary files by default, and -r is on by default. And if you want only CPP and H files, then just do

ack -icl --cpp "foo="
link|flag
Looks nice, will try the standalone Perl version next time, thanks. – Piskvor Oct 21 '08 at 14:39
vote up 3 vote down

grep 2.5.3 introduced the --exclude-dir parameter which will work the way you want.

grep -rI --exclude-dir=.svn PATTERN .

You can also set an environment variable: GREP_OPTIONS="--exclude-dir=.svn"

I'll second Andy's vote for ack though, it's the best.

link|flag
vote up 1 vote down

I find grepping grep's output to be very helpful sometimes:

grep -rn "foo=" . | grep -v "Binary file"

Though, that doesn't actually stop it from searching the binary files.

link|flag
1  
You can use grep -I to skip binary files. – Nathan Fellman Aug 27 at 6:17
vote up 1 vote down

find and xargs are your friends. Use them to filter the file list rather than grep's --exclude

Try something like

find . -not -name '*.png' -o -type f -print | xargs grep -icl "foo="
link|flag
This doesn't work on filenames with spaces, but that problem is easily solved by using print0 instead of print and adding the -0 option to xargs. – Adam Rosenfield Oct 21 '08 at 13:46
vote up 1 vote down

Try this one:

 $ find . -name "*.txt" -type f -print | xargs file | grep "foo=" | cut -d: -f1

Founded here: http://www.unix.com/shell-programming-scripting/42573-search-files-excluding-binary-files.html

link|flag
This doesn't work on filenames with spaces, but that problem is easily solved by using print0 instead of print and adding the -0 option to xargs. – Adam Rosenfield Oct 21 '08 at 13:58
vote up 0 vote down

Hi! those scripts don't accomplish all the problem...Try this better:

du -ha | grep -i -o "\./.*" | grep -v "\.svn\|another_file\|another_folder" | xargs grep -i -n "$1"

this script is so better, because it uses "real" regular expressions to avoid directories from search. just separate folder or file names with "\|" on the grep -v

enjoy it! found on my linux shell! XD

link|flag
vote up 0 vote down

The suggested command:

grep -Ir --exclude="*\.svn*" "pattern" *

is conceptually wrong, because --exclude works on the basename. Put in other words, it will skip only the .svn in the current directory.

link|flag
vote up 0 vote down

The --binary-files=without-match option to GNU grep gets it to skip binary files. (Equivalent to the -I switch mentioned elsewhere.)

(This might require a recent version of grep; 2.5.3 has it, at least.)

link|flag
vote up 0 vote down

I'm a dilettante, granted, but here's how my ~/.bash_profile looks:

export GREP_OPTIONS="-orl --exclude-dir=.svn --exclude-dir=.cache --color=auto" GREP_COLOR='1;32'

Note that to exclude two directories, I had to use --exclude-dir twice.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.