need to search for something in entire content
I am trying:
find . | xargs grep word
I get error:
xargs: unterminated quote
How to achieve this? Thanks.
|
|
|
If your grep supports the
Otherwise, use the
Older versions of
Some versions of
|
|||
|
|
I guess you mean the first option grep recursive, for searching content inside files
ls recursive, for searching files that match
|
|||||||||
|
|
If you have the GNU tools (which you do if the Linux tag is accurate) then you can use
|
|||
|
|
|
I think you want to find a string in files Try |
|||
|