linux find command search for string code example
Example 1: linux search for line in file
grep -R "keyword" /directory/
Example 2: bash find term in files
grep "some string" . -R
grep -R "keyword" /directory/
grep "some string" . -R