=^.^=

Search and Replace a String in Multiple Files

karma

To find and replace a string in multiple files use this PERL regex command line recipe, taking special care to escape (precede with a backslash, '\') special characters and control sequences:
perl -i -p -e 's/old/new/g;' *.php

Comments

There are no comments for this item.