I can actually do the leading <h1> with this:
sed s/\<h1\>/\<h2\>/ myblog.html
but how do I get it to do the trailing </h1> also?
So I would like to go from:
<h1> some header </h1> to <h2> some header </h2>
|
|
|
You don't need to use the slash when defining sed substition commands, it can be another symbol:
|
|||
|
|
|
Use capturing group to capture the optional
|
|||||
|
|
|
Sometimes I find the simplest solution for HTML tags is to ignore the slash in the closing tag altogether and match the open and close together with a single pattern, like this:
|
|||
|
|