Answers for "linux grep recursive"

3

linux grep recursive

grep -r "texthere" .
Posted by: Guest on July-06-2020
0

recursive grep recursion depth

find . -type f -maxdepth 2 -exec grep -l 'pattern' {} \;
Posted by: Guest on March-18-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language