How can the current directory and its subdirectories be…

How can the current directory and its subdirectories be searched for the file named MyFile.xml?

How can the current directory and its subdirectories be searched for the file named MyFile.xml?

A.
find . -name MyFile.xml

B.
grep MyFile.xml | find

C.
grep -r MyFile.xml .

D.
less MyFile.xml

E.
search Myfile.xml ./



Leave a Reply 1

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


fe

fe

vagrant@ubuntu-xenial:~$ sudo find . -name “file*”
./workingdir/file.txt
./file.txt
vagrant@ubuntu-xenial:~$