Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

1 Answer

up vote 6 down vote accepted

This will do the trick

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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