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