Answers for "search for files in linux terminal"

10

how to find a file in linux terminal

find /path/to/folder/ -iname *file_name_portion*
Posted by: Guest on April-01-2020
0

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
Posted by: Guest on June-23-2020

Code answers related to "search for files in linux terminal"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language