I would like to give IronPython and Mono a try. Specifically doing sysadmin tasks. Which often means running OS commands. In CPython I use the subprocess module for such tasks. But in IronPython (v2.0.1, Mono 2.4, Linux) there is no subprocess module. It seems there is not even an 'os' module. So I can't use os.system(). What would be the IronPython way of doing tasks you would normally use 'subprocess' or 'os.system()' for in CPython?
|
|
I have found an answer. Thanks to the "IronPython Cookbook". One can find more information on this subject there: http://www.ironpython.info/index.php/Launching_Sub-Processes
|
||
|
|
|
You can use most of the standard os modules from within ironpython.
|
||||||
|
|
|
Consider this C# Interactive Shell too....not sure if it supports IronPhython in the shell, but Mono does as you know. |
||
|
|
