vote up 1 vote down star

How do I escape '<' and '>' character in sed.

I have some xml files which needs some text between the tags to be replaced. How do I escape the '>' and '<' characters.

The problem with > and < is it has special meaning in the shell to redirect the output to a file. So backslash doesn't work.

flag

53% accept rate

3 Answers

vote up 0 vote down

Escape them with backslash

link|flag
vote up 0 vote down

Just put a backslash before them or enclose them in single or double quotes. On second thought, your question I think needs to be more clear. Are you trying to use sed to process an XML file and you want to get what's between a tag? Then you want:

sed -re 's@(<TAG.*?>).*?(</TAG>)@\1hi\2@' test.xml
link|flag
I dont want to process the xml file. Just replace some text between the <tag>foobar</tag>. Anyway thanks. – cnu Sep 30 '08 at 13:57
vote up 3 vote down check

Ok. Found out by myself. Use quotes.

$ sed -i "s/>foo</>bar</g" file
link|flag

Your Answer

Get an OpenID
or

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