https://bugs.winehq.org/show_bug.cgi?id=54100
Bug ID: 54100 Summary: Allow cmd to execute native Linux programs Product: Wine Version: 7.22 Hardware: x86-64 OS: Linux Status: NEW Severity: enhancement Priority: P2 Component: cmd Assignee: wine-bugs@winehq.org Reporter: dark.shadow4@web.de Distribution: ---
Created attachment 73635 --> https://bugs.winehq.org/attachment.cgi?id=73635 Hack that works around the issue
Example: wine cmd /c z:\bin\bash --help
This currently gives Can't recognize 'z:\bin\bash --help' as an internal or external command, or batch script.
This could help integration.
https://bugs.winehq.org/show_bug.cgi?id=54100
Fabian Maurer dark.shadow4@web.de changed:
What |Removed |Added ---------------------------------------------------------------------------- Keywords| |patch, source
https://bugs.winehq.org/show_bug.cgi?id=54100
--- Comment #1 from Fabian Maurer dark.shadow4@web.de --- Yes, there is the "start" command which can start unix processes, but that messes with stdin/stdout redirection. (Which is currently blocked by bug 54099 anyways)
https://bugs.winehq.org/show_bug.cgi?id=54100
Eric Pouech eric.pouech@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |eric.pouech@gmail.com
--- Comment #2 from Eric Pouech eric.pouech@gmail.com --- Created attachment 73640 --> https://bugs.winehq.org/attachment.cgi?id=73640 proposed patch
I'd rather use this as a patch ;-) testing it...
---------------
Z:>z:\bin\bash -c "echo foo"
Z:>foo
Z:>z:\bin\bash -c "echo foo" > \tmp\bar
Z:>more \tmp\bar foo
--------------- notes: - cmd cannot simply wait on child termination... hence sometimes the funky output relative to prompt (see second line of output) - redirection in general works...