Find and Replace text in multiple files (with Perl)
From Birnam Designs Wiki
find . -name '*.html' | xargs perl -pi -e 's/oldtext/newtext/g'
You can also Replace Text in Multiple Files (with sed)
|
Find and Replace text in multiple files (with Perl)
From Birnam Designs Wikifind . -name '*.html' | xargs perl -pi -e 's/oldtext/newtext/g' You can also Replace Text in Multiple Files (with sed) |