To find and replace in multiple files on Unix command line use this:
find . -name '*.html' |xargs perl -pi -e 's/find/replace/g'
To find and replace in multiple files on Unix command line use this:
find . -name '*.html' |xargs perl -pi -e 's/find/replace/g'