Find a string in all files of the system

find / -type f -print0 | xargs -0 grep -i "string"

Comments