Linux find and replace Posted on 27 September 2010 by Nicolas A simple example to replace part of a string (toto) by another (titi) inside multiples files : find ./ -name “*.txt” -print -exec sed -i ‘s/toto/titi/g’ {} \;