recursively grep code example
Example 1: recursive grep recursion depth
find . -type f -maxdepth 2 -exec grep -l 'pattern' {} \;
Example 2: linux grep recursive
grep -r "texthere" .
find . -type f -maxdepth 2 -exec grep -l 'pattern' {} \;
grep -r "texthere" .