Search And Replace Over File(s) With Perl
DZone's Guide to
Search And Replace Over File(s) With Perl
Join the DZone community and get the full member experience.
Join For FreeA quick bit of Perl can come in handy if you have an old site to update that has no CMS, or something similar.
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 :)
Topics:
Opinions expressed by DZone contributors are their own.
{{ parent.title || parent.header.title}}
{{ parent.tldr }}
{{ parent.linkDescription }}
{{ parent.urlSource.name }}