Perl Find and Replace One Liner
I’m constantly needing a way to easily change a line in a bunch of configuration files. I thought I’d share the way I do it here.
perl -p -i -e 's/oldstring/newstring/g' *
This allows you to use a regular expression and perform the find and replace.
