linux search for file code example
Example 1: file search linux by text
grep -rnw '/path/to/somewhere/' -e 'pattern'
Example 2: linux find file
# syntax
# find *</path/to/dir> '(' *<Filter-1> *<and/or-operator> *<filter-2> ')'
# example
find . '(' -name "Test*.pm" -a ! -name 'Useless*' ')'