vote up 0 vote down star

What is the practical difference between the following two commands?

Command A

find . -type f -print0 | xargs -0 grep -r masi

Command B

find . -type f -print0 | xargs -0 grep masi

In short, what is the practical benefit of Command A?

flag

Thank you for your answers! – Masi Jul 13 at 21:00

2 Answers

vote up 2 vote down check

None .. -r is for recursively searching directories, but the -type f will prevent find from returning directory names.

link|flag
I opened a new thread based on this answer at stackoverflow.com/questions/1122116/… – Masi Jul 13 at 21:17
vote up 1 vote down

I think none The A will try to recurse over file names (as the find is only searching for files) so it will not recurse into anything...

link|flag

Your Answer

Get an OpenID
or

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