linux find file that contains string pattern code example
Example 1: find text pattern in file linux
grep -rnw '/path/to/somewhere/' -e 'pattern'
Example 2: how to search keyword in linux
grep -w phoenix *
grep -rnw '/path/to/somewhere/' -e 'pattern'
grep -w phoenix *