Show on screen all the directories, only directories, of the current directory that contain in their name the string "pra".
I have this:
find . -type d
Show on screen all the files, only files, of the current directory that contain in their name the string "pra".
I have this:
find . -type f
But it's wrong because I get an infinite loop. Can someone help me with them?