terminal find file by name code example
Example 1: bash find file by name
find . -name 'mystring*'
Example 2: terminal how to find a file name
find / -name NAME.EXTENSION
Example 3: search for files in linux terminal
find /path/to/folder/ -iname *file_name_portion*
#Example
find / -iname *test*
#Output
/downloads/test_2.txt
/downloads/test_1.csv
/home/ubuntu/first_test.txt