In python it is quite easy:<br><br>import commands<br><br>status, output = commands.getstatusoutput("my command")<br>--------------------<br><br>status will be the return code of the command<br>output will be what the command displayed
<br><br>-sjh<br>