Say our folder structure looks like this:

/app
/app/data
...
/app/secondary
/app/secondary/data

I want to recursively search /app/data but I do not want to search /app/secondary/data.

From within the app folder, what would my grep command look like?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

This will do the trick

grep -r --exclude-dir='secondary/data' PATTERN data
link|improve this answer
Only for gnu grep version >=2.5.1a – rymo Mar 14 at 20:56
feedback

Your Answer

 
or
required, but never shown

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