Suppose I have this text:
BEGIN
hello
world
how
are
you
END
How to convert it to bellow text using sed command in linux:
BEGIN
fine, thanks
END
Suppose I have this text:
BEGIN
hello
world
how
are
you
END
How to convert it to bellow text using sed command in linux:
BEGIN
fine, thanks
END
$ cat file
BEGIN
hello
world
how
are
you
END
$ sed -e '/BEGIN/,/END/c\BEGIN\nfine, thanks\nEND' file
BEGIN
fine, thanks
END
/BEGIN/,/END/
selects a range of text that starts with BEGIN
and ends with END
. Then c\
command is used to replace the selected range with BEGIN\nfine, thanks\nEND
.
sed -e 's/BEGIN hello world how are you END/BEGIN fine, thanks END/g'