grep word in all files code example
Example 1: linux search for line in file
grep -R "keyword" /directory/
Example 2: grep for all .py files containing a word
grep -rnw '/path/to/somewhere/' -e 'pattern'
grep -R "keyword" /directory/
grep -rnw '/path/to/somewhere/' -e 'pattern'