SyntaxFix
Write A Post
Hire A Developer
Questions
I use something like this:
find . -name <filename> -print0 | xargs -0 cat | grep <word2search4>
"-print0" argument for "find" and "-0" argument for "xargs" are needed to handle whitespace in file paths/names correctly.
-print0
-0