Answers for "how to find a file in linux terminal"

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
1

find file linux

find /home/linuxize -type f -name document.pdfCopy
Posted by: Guest on March-19-2021
-1

ubuntu search file in specific folder

// Using backslash and asterisk (\*) at the end will search for all files that start with your search term (in this case "readme"). So you would also be able to find "readme2" etc. 
find . -name readme\*
Posted by: Guest on September-30-2020

Code answers related to "how to find a file in linux terminal"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language