Search and Replace Strings in Files Under a Certain Directory Get link Facebook X Pinterest Email Other Apps December 29, 2011 As simple as: $ find thePath -type f -name theFileNamePattern |xargs \ perl -e "s/toBeReplacedString/newString/g" -pi Read more