search for a string in all files linux code example
Example 1: find text in folder
grep -rnw '/path/to/somewhere/' -e 'pattern'
Example 2: shell find string in directory
grep -R "string_to_search" *
grep -rnw '/path/to/somewhere/' -e 'pattern'
grep -R "string_to_search" *