Hi folks - hope you can help. I have this to replace any IP address with the word ThisIsATest in the file SiteBasic.xml
sed 's/[0-9]\{1,3\}.[0-9]\{1,3\}.[0-9]\{1,3\}.[0-9]\{1,3\}/ThisIsATest/g' SiteBasic.xml
Works a charm
Problem is, i want it only to replace lines with this string
ossCorbaNameServer="1.2.3.4"/>
or in other words
ossCorbaNameServer="<ip address>"/>
All help much appreciated.

