https://bugs.winehq.org/show_bug.cgi?id=42182
Bug ID: 42182 Summary: OUT: isn't supported (custom output device) Product: Wine Version: 1.8.1 Hardware: x86 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: cmd Assignee: wine-bugs@winehq.org Reporter: kenorb@gmail.com Distribution: ---
On Windows, OUT: is the special device and doing:
echo test > OUT
or:
echo test > OUT:
would redirect this to output device (by default same as NUL).
On Wine, "OUT:" file is created.
This should work similar as for CON: (which works fine in Wine):
echo test > CON
or:
echo test > CON:
See list of special devices at: http://superuser.com/a/613335