Use the following commands to find files that contain specific text
grep “text to search for” directory-path
grep "config" /home
-r will search recursively
grep -r "config" /etc
Use the following commands to find files that contain specific text
grep “text to search for” directory-path
grep "config" /home
-r will search recursively
grep -r "config" /etc