- May
- 13,215
- 180
If I do this in a plugin:
and Buffer contains a compound command, like
only the output of the first ECHO makes it into the pipe. Is this my fault? Regardless, is there anything I can do to get all the output?
Thanks.
Code:
SetStdHandle(STD_OUTPUT_HANDLE, hPipe);
Command(Buffer, 0);
SetStdHandle(STD_OUTPUT_HANDLE, hSave);
Code:
echo foo & echo foo
Thanks.