Pour remplacer "echo htmlentities" par "highlight_string" dans tous les fichiers php du répertoire courant tapez ceci :
sed -i 's/echo htmlentities/highlight_string/g' *.php
Alternative pour un chercher remplacer récursif :
find . -name "*.php" -exec sed -i 's/echo htmlentities/highlight_string/g' {} \;