search in file linux code example
Example 1: find text in any file linux
grep -rnw '/path/to/somewhere/' -e 'pattern'
Example 2: bash find all files containing string
grep -r '/path/to/somewhere/' -e 'pattern'
Example 3: linux search for line in file
grep -R "keyword" /directory/
Example 4: find in file linux
grep -rnw '/path/to/somewhere/' -e 'pattern'
Example 5: linux find file
# syntax
# find *</path/to/dir> '(' *<Filter-1> *<and/or-operator> *<filter-2> ')'
# example
find . '(' -name "Test*.pm" -a ! -name 'Useless*' ')'