File a.html:

<!--TEMPLATE: banner-->
blahblah
<!--TEMPLATE-END: banner-->

I want to replace the middle text to some other text, how to achieve that using sed/awk/other tools?

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

If you have the new banner text in another file:

awk -v new_file=new_banner.txt '
    /!--TEMPLATE:/ {print; system("cat " new_file); banner=1; next}
    /!--TEMPLATE-END:/ {banner=0}
    banner {next}
    {print}
' a.html
link|improve this answer
feedback

If the text between the marker lines consists of one or more lines:

sed '/<!--TEMPLATE: banner-->/,/<!--TEMPLATE-END: banner-->/ {//!d}; /<!--TEMPLATE: banner-->/aSome text to insert' a.html

The i command could be changed to an r command and a file name to read the text from a file.

sed '/<!--TEMPLATE: banner-->/,/<!--TEMPLATE-END: banner-->/ {//!d}; /<!--TEMPLATE: banner-->/r filename' a.html
link|improve this answer
This did not work on Mac OS X. Presuming this might be a GNU sed feature only. – Sukima May 10 at 3:47
feedback
sed -r 'N;s/(<!--TEMPLATE: banner-->\n).*/\1lalala/'

Input

$ cat sedbanner
<!--TEMPLATE: banner-->
blahblah
<!--TEMPLATE-END: banner-->

Output

$ sed -r 'N;s/(<!--TEMPLATE: banner-->\n).*/\1lalala/' ./sedbanner
<!--TEMPLATE: banner-->
lalala
<!--TEMPLATE-END: banner-->

If you like the output then replace sed -r with sed -ri to make it an in-place edit

link|improve this answer
1  
this solution can't apply if I have multiple line inside the comments, right? – Bin Chen Nov 30 '10 at 11:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.