linux find in directory string code example
Example 1: linux find from file content
grep -rnw '/path/to/somewhere/' -e 'pattern'
Example 2: shell find string in directory
grep -R "string_to_search" *
Example 3: bash find term in files
grep "some string" . -R