Currently Browsing: Perl

Recursive Search and Replace

This post is mostly a reference for me.

This is my favorite perl one line command

perl -p -i -e ‘s/oldstring/newstring/g’ *

Read the full article at Joseph Scott’s Blog