find files with given word linux code example
Example 1: bash find all files containing string
grep -r '/path/to/somewhere/' -e 'pattern'
Example 2: how to search keyword in linux
grep -w phoenix *
grep -r '/path/to/somewhere/' -e 'pattern'
grep -w phoenix *