find Archives

How to locate a file in Linux with find

Need to find a file on your system? Look no further than the excellent find command line tool. Here’s how to use it: find / -name ‘yourfilename.extension’ This brings up a list of every file whose name matches “yourfilename.extention”. Wildcards are allowed, so you could list every .log file on the system like this: find … Read more