How can you search for all files inside the /etc folder that contains "password" or "passwd"?
I used this command egrep -R 'password|passwd' /etc and it works, but I'm not comfortable to combine FIND and EGREP. This one is new to me. I'm trying to read the manual from man find but I can't find yet anything that will help me how to use both find and egrep.