Howto Replace multiple file text string in Linux

August 13th, 2007


View original post


If you have a folder with a lot of files in a directory and with a specific string that you want to change you can do it in seconds using grep and perl command line

grep -R –files-with-matches ‘OLDSTRING’ . | sort | uniq | xargs perl -pi~ -e ’s/OLDSTRING/NEWSTRING/’

Where OLDSTRING is the string you want to find and replace with NEWSTRING.

Tags: , ,

Related posts

View source post

Trackback URI | Comments are closed.