how to find the file in linux code example
Example 1: how to find a file in linux terminal
find /path/to/folder/ -iname *file_name_portion*
Example 2: find in file linux
grep -rnw '/path/to/somewhere/' -e 'pattern'
find /path/to/folder/ -iname *file_name_portion*
grep -rnw '/path/to/somewhere/' -e 'pattern'