On Fri, Dec 31, 2010 at 12:06 AM, Rony gnulinuxist@gmail.com wrote:
I have been wanting to ask this for a long time. What is this code many of you guys use to show corrections? 's/wrong/right/' ?
This is the syntax of ed/sed which is also used in vim. e.g. In vim, <Esc>:s/foo/bar/<Enter> to change the first occurrence of 'foo' to 'bar' on the current line.
Thanks, Mohan S N