Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Multiple File Search and Replace (See related posts)

perl -pi -w -e 's/search/replace/g;' *.txt


Bear in mind what's between the single quotes after the -e option is a line of Perl code and the search argument is a regular expression, so some characters will have special meanings. You can escape special characters (like the forward-slash, dot, caret, dollar sign, and so on) by preceeding them with a back-slash.

You need to create an account or log in to post comments to this site.


Click here to browse all 5147 code snippets

Related Posts