linux search through files for string code example
Example 1: find text in any file linux
grep -rnw '/path/to/somewhere/' -e 'pattern'
Example 2: linux search for line in file
grep -R "keyword" /directory/
Example 3: shell find string in directory
grep -R "string_to_search" *