How Do I Search for Files on linux ?

How Do I Search for Files on linux ?

find / -name “kartook” -print

This command tells find to start looking in the root directory of the filesystem.

(/) for files named (-name) kartook and then to print (-print) the full name of each file it finds.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.