/ Published in: Bash
URL: http://www.brunolinux.com/02-The_Terminal/Find_and%20Replace_with_Sed.html
From the referenced website: Well, that command speaks for itself "sed" edits "-i in place ( on the spot ) and replaces the word "ugly with "beautiful" in the file "/home/bruno/old-friends/sue.txt"
Expand |
Embed | Plain Text
$ sed -i 's/ugly/beautiful/g' /home/bruno/old-friends/sue.txt
You need to login to post a comment.
