Category: Linux

If you need to find a string recusively in files and replace with another string. Copy the following script into a file called replace.sh and run from a Linux prompt:

/.replace.sh
for file in $(find . -name '*.{FILEEXTENSION}'); do
	sed -e 's/{FIND}/{REPLACE}/' $file > $file.new
	mv $file.new $file
done

Tags:

Linux

How useful was this post?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate this post.