linux terminal search for file code example
Example 1: find text in any file linux
grep -rnw '/path/to/somewhere/' -e 'pattern'
Example 2: how to find a file in linux terminal
find /path/to/folder/ -iname *file_name_portion*
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
Example 4: find a file in linux terminal
find /home/username/ -name "*.err"