http://bugs.winehq.org/show_bug.cgi?id=3527
------- Additional Comments From us@edmeades.me.uk 2007-01-04 14:17 ------- This will still occur - the command line processing replaces a > or < with 0x00, which effectively truncates the command line. The resolution is to process the command line and strip these out leaving just the paramters.
Note: a space or / (or |) terminates the command line, ie the following are the same: dir >a.a zz /s dir zz>a.a/s dir zz /s >a.a dir /s zz >a.a
If you want to redirect to a file with spaces, use quotes (dir >"hello world")