bash find multilpe files code example
Example 1: bash find text in specific file
find <your directory path> -name "*.file_type" -type f | xargs grep "word"
Example 2: bash find files and operator
# syntax
# find *</path/to/dir> '(' *<filter-1> -a *<filter-2> ')'
# example
find . '(' -name '*ERR5312209.zip' -a -name 'ANDROID_ERR*.TXT' ')'