To scan a linux filesystem and find all files containing a specific string.


find / -type f -print0 | xargs -0 grep -i STRING