Kent , grep; . , find , , , find grep.
man find, man- , find. -maxdepth.
. , , :
find . , (.) -.
find . -maxdepth 1 . find . -maxdepth 2 . ...
, . , grep , . -type f, : find . -maxdepth 2 -type f.
, , grep . - xargs:
find . -maxdepth 2 -type f | xargs grep <text-to-search-for>
| " ", "stdout", find (.. , ) xarg " ", "stdin", .. , .
xargs - , , (, grep <text-to-search-for>), , stdin. grep , find.
, , xargs , , . ( ), find.
-exec find, , , ; +. {} ( { }), . find , , .
, , :
find . -type f -maxdepth 2 -exec grep <text-to-search-for> {} +
( + ; . man find, , + , , {} .)