Post

Search and Replace in Files

Here is how to do a search and replace using Perl regex over a set of files:

1
perl -pi -e 's/source/destination/g' *.ext
This post is licensed under CC BY 4.0 by the author.