How can we find specific type of files i.e. doc pdf files present in nested directories.
command I tried:
$ ls -R | grep .doc
but if th
find . | grep "\.doc$"
This will show the path as well.