Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Linux by (18.4k points)
I am working on Ubuntu, and I wanted to find all my files in the current directory and subdirectories which contain the name, Linux_doc. I know that I need to use the grep. I have no idea how to use it with the file names.

1 Answer

0 votes
by (36.8k points)

You can use the find command:

find . -type f -name "*Linux_doc*"

To know about Linux join the Linux training

 

Do check out the video below

 

Related questions

Browse Categories

...