sed
simple sed example
Submitted by benl on Fri, 05/07/2010 - 16:48
Related Terms :
This will globally find and replace all instances of "find" with "replace"
$ sed -i 's/find/replace/g' file.txtThis will globally find and replace all instances of "find" with "replace"
$ sed -i 's/find/replace/g' file.txt