Hello,
I was glad to see that a subprocess module had been written for use with
IronPython; as I'd like to get stdout from plink and os.popen will not
handle this, but subprocess.popen will.
(http://www.ironpython.info/index.php/The_subprocess_module)
However, when I attempt build an IronPython S
Hi all,
Attached is a partial .NET implementation of the subprocess module.
There are currently a few limitations:
* Popen.communicate doesn't work
* Can't redirect stdin except for PIPE
* Can't redirect stderr to stdout (i.e. using stderr=subprocess.STDOUT)
* Can't redirect to a file descriptor
*