Answers for "find all files containing string linux"

5

bash find all files containing string

grep -r '/path/to/somewhere/' -e 'pattern'
Posted by: Guest on October-29-2020
11

find string in files linux

grep -rnw '/path/to/somewhere/' -e 'pattern'
Posted by: Guest on January-23-2020
3

find text in all files linux

grep -rnw '/path/to/somewhere/' -e 'pattern'
Posted by: Guest on November-17-2020
0

linux find all files name containing string

find . -name "*ABC*" -exec grep -H 'XYZ' {} +
Posted by: Guest on April-23-2021

Code answers related to "find all files containing string linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language