I have a question with I can't figure out.
I have in xml file something like this:
<tag desc="some desc can be different" dep="dep" >value</tag>
I wanna change this like using sed to:
<tag desc="NEW DESC" dep="dep" >value</tag>
My question is: can I use sed to replace text between "<tag ... >
" with new one?
Thank you for help :)