https://bugs.winehq.org/show_bug.cgi?id=54099
Eric Pouech eric.pouech@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |eric.pouech@gmail.com, | |julliard@winehq.org
--- Comment #2 from Eric Pouech eric.pouech@gmail.com --- for your test program to work, it requires that Wine launches the unix program with correct unix fd 0, 1 & 2
wine does it when it can map the requested I/O handles into a (real) unix fd (it's the case for a file handle)
but, it doesn't work because there's no support for mapping back a windows pipe handle into unix fd
so I'm a bit surprised by the commit you're pointing to which doesn't touch these areas. Cc:ing Alexandre in case...
potential workaround: - if your intend was to do something like: Z: foo.exe | \bin\bash -c 'Iloveunix.sh' - that should be achievable with Z: foo.exe > tmp \bin\bash -c 'cat tmp | Iloveunix.sh'
HTH