I am trying to write up a batch file that would run a schedule where it would get an log file in xml. Now whenever the batch file would run it would get it for today.
This is what I written very basic, Maybe reason why I am getting it wrong.
svn log -v -r {%date%} --xml http://repositorylocation.com > op7.xml
Now when I do that I get not only the date i need but the three letter ancrynom for day. And i need that removed but dont know how . Any advice?
I am running this on Windows XP.
Thank you.
%date%format is governed by short date format (regional settings), so simplest would be to just set that to whatever you need. It you can't, or do not want to set it user wide, you could check techniques in this answer