Q: How do I search for a specific text string in a all files?
 
A: Say you want to find the string "sysadmin" in all files recursively in the folder /root/files.
 
# grep -R "sysadmin" /root/files/*
 
 
 
 
 
Hits: 521