Quote:
Originally Posted by jaadfoo I've got two win32 command line programs I'm running under wine. How do I pipe command line output from one to another? Due to the size of the output (takes 30min to run), it limits how well I can test this scenario.
This doesn't work:
wine command1.exe | wine command2.exe
I'm think that maybe backticks would work:
`wine command1.exe` | `wine command2.exe`
or
wine "command1.exe | command2.exe"
but I'm not sure.
Any ideas? |
Try to explain a bit better what you are trying to do and we will see if there's any way around it.
Those examples that you posted, besides being syntactically incorrect in some cases, will never work, because you are trying to pipe something that is outside the scope of your shell.
If you are looking for some DOS-like kind of operation, you should be checking dosbox instead, or even freedos into a virtual box.