How to search and replace text strings in multiple text files using sed
This is how you can automatically search and replace text strings in multiple text files in a single command using sed.
References, Sources and Credits:
http://www.cyberciti.biz/faq/unix-linux-replace-string-words-in-many-files/
sed -i "s/searched-text/replacement-text/g" text-filename.txt
References, Sources and Credits:
http://www.cyberciti.biz/faq/unix-linux-replace-string-words-in-many-files/
Comments
Post a Comment