Answers for "how to find a file in terminal"

2

terminal how to find a file name

find / -name NAME.EXTENSION
Posted by: Guest on January-17-2020
-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
0

find in file terminal

grep -r 'text goes here' path_goes_here
Posted by: Guest on September-26-2021

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

Browse Popular Code Answers by Language