How to do a search and replace in multiple files using Perl
Over the years, I’ve written a number of “search and replace in multiple files” scripts. Working on a computer that didn’t have my standard, custom toolset available, I found myself searching for an alternative.
Found this tip over at Dzone Snippets – do it all with a single line of perl.
perl -pi -w -e [...]
