how to locate a file in linux terminal code example
Example 1: how to find a file in linux terminal
find /path/to/folder/ -iname *file_name_portion*
Example 2: find linux with extension
find /home/username/ -name "*.err"
find /path/to/folder/ -iname *file_name_portion*
find /home/username/ -name "*.err"