find . -type f -print0 | while read -d $'\0' f; do if perl -0777pe 's|/\*.*?\*/||gs' $f | grep certain_string >/dev/null; then echo $f; fi ; done