I have a text file in which i have a xml data. Now i want to replace the date from current date plus 2 days in dd/mm/yyyy format . I tried it will sed command in Unix but i am unable to do that .Below command i tried to change the date .But it is not changing the text.
sed -i 's/\<Date\>*\<Date\>/\<Date\>date +"%m/%d/%y"<Date\>/g' avltest.xml
<Args>
<Date>01/10/2017</Date>
<\Args>
In the Date field i want to change the date whenever i run my command or i can use that command from a script.
Here's a perl version:
I removed the redundant backslashes before
<
and>
, added the missing/
in</Date>
, and fixed the*
part.