Suppose I have this text:
BEGIN开发者_StackOverflow中文版
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
.
精彩评论