http://bugs.winehq.org/show_bug.cgi?id=21505
NSLW lukasz.wojnilowicz@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|CLOSED |UNCONFIRMED Resolution|INVALID |
--- Comment #3 from NSLW lukasz.wojnilowicz@gmail.com 2010-01-28 01:33:58 --- (In reply to comment #1)
Don't see a problem here:
It's because you tested it in wrong way.
Win xp: echo %ProgramFiles%> test_echo_win.txt
In cmd do : set PROGRAMFILES=%ProgramFiles% echo "PreviousText_ %PROGRAMFILES% _NextText" > test_echo_wine.txt
Wine: wine cmd /c echo "%ProgramFiles%" > test_echo_wine.txt
In terminal do:
PROGRAMFILES=`wine cmd /c echo %ProgramFiles%` echo "PreviousText_ $PROGRAMFILES _NextText" >& test_echo_wine.txt
Now you can compare both files. In MS WinXP case all is in single line in Wine case text is in two lines.