Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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>
share|improve this question

3 Answers

up vote 2 down vote accepted

You don't need to use the slash when defining sed substition commands, it can be another symbol:

sed -e 's/<h1>/<h2>/g' -e 's_</h1>_</h2>_g'
share|improve this answer
Or sed -e 's/<h1>/<h2>/g;s_</h1>_</h2>_g' – Donal Fellows Jan 16 at 13:29

Use capturing group to capture the optional / and replace by back-reference the capturing group:

sed -r 's/<(\/?)h1>/<\1h2>/' myblog.html

-r option is to activate extended regular expression.

share|improve this answer
I couldn't get this to work – woollybrain Jan 16 at 12:37
@woollybrain: Forgot that ( doesn't have special meaning in sed regex – nhahtdh Jan 16 at 12:58

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:

sed 's/h1>/h2>/' myblog.html
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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