18.01.2020 Views

Working with Linux

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

-name: This helps to search the file name

If we were to look for all readme files in the project, the previous command format is not helpful. We

need to issue a case insensitive find. For demonstration purposes, we will also create a readme.md

file:

touch lib/readme.md

We will also use the -iname argument for case insensitive search:

find . -iname readme.md

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!