search file contents recursively linux code example
Example 1: bash find all files containing string
grep -r '/path/to/somewhere/' -e 'pattern'
Example 2: linux find from file content
grep -rnw '/path/to/somewhere/' -e 'pattern'
grep -r '/path/to/somewhere/' -e 'pattern'
grep -rnw '/path/to/somewhere/' -e 'pattern'