Search and Replace in Files
Here is how to do a search and replace using Perl regex over a set of files:
perl -pi -e 's/source/destination/g' *.ext
Here is how to do a search and replace using Perl regex over a set of files:
perl -pi -e 's/source/destination/g' *.ext