views:

73

answers:

1

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?

+2  A: 

This will do the trick

grep -r --exclude-dir='secondary/data' PATTERN data
seamus