search for files in linux terminal

Shell
find /path/to/folder/ -iname *file_name_portion*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
Source

Also in Shell: