Search and replace over file(s) with Perl
To change 'source' to 'destination' in all HTML files in the current directory:
perl -pi -e 's/source/destination/g' *.html
You could use this to update copyright notices, etc.. but bear in mind you need to stay with Perl/regex syntax, so escape those forward slashes, etc :)