I would like to try IronPython and Mono. Specifically performing sysadmin tasks. This often means executing OS commands. In CPython, I use a subprocess module for such tasks. But in IronPython (v2.0.1, Mono 2.4, Linux) there is no subprocess module. It seems that there is not even an os module. Therefore I can not use os.system (). What will be the IronPython method to accomplish the tasks you usually use for the subprocess or os.system () for CPython?
source share