concole find file code example
Example 1: how to find a file in linux terminal
find /path/to/folder/ -iname *file_name_portion*
Example 2: find by name linux
# dot is curr dir
find . -name "*.txt"
find /path/to/folder/ -iname *file_name_portion*
# dot is curr dir
find . -name "*.txt"