-
@MediaRemedial
find ./ -type f -exec grep -i "string" {} +(; runs the command once per file, + makes it like xargs), then you can awk/sed/etc the result
find ./ -type f -exec grep -i "string" {} + (; runs the command once per file, + makes it like xargs), then you can awk/sed/etc the result