Posts

Showing posts with the label Coding

Search and Replace Strings in Files Under a Certain Directory

As simple as: $ find thePath -type f -name theFileNamePattern |xargs \ perl -e "s/toBeReplacedString/newString/g" -pi