|
find and replace in XML
Hi
I need one clarication..
I have an xml having many entries like this..
<Cust_Name>Tom Cruise</Cust_Name>
I want to rename this to
<Cust_Name>TEST</Cust_Name>
Pls let me know how to do it..
I was trying some basic commands like
grep 'Cust_Name' * | tr '>' ',' | tr '<' ',' | cut -d ',' -f3| sed "s/[0-9a-zA-Z_]/TEST/g"
The bold part is not working..any idea
|