How can I temporarily set the current system's regional format so applications such as svn list always outputs in english no matter how system is configured ?
I am using svn list to get some info on a repository and it uses the system regional format to print the items date/time. But the problem is that when system's regional format is set in French, the number of columns used for the date/time section varies from line to line.
I have an old tool (that cannot be modified) that parses the output of svn list using hardcoded column count for each values.
For instance here are the two lines in french and in english using the command svn list -v-R "URL HERE":
935 langevin 63185 Jul 13 07:50 doc/tests.docx
935 langevin 63185 juil. 13 07:50 doc/tests.docx
Here the filename does not start at the same column due to the month not having the same amount of characters (And it varies from month to months...
Thank you