find -type f -exec sed -i 's/SUCHTEXT/ERSETZUNGSTEXT/g' {} \;
Kategorie: Volltextsuche
Kategorien
Volltextsuche unter Linux
find . -type f -exec grep -qi "suchwort" {} \; -print
find = Suchprogramm
. = das Verzeichnis
-type f = durchsucht nur Type File
grep = Sucht nach einem bestimmten Suchwort