通常我們調用os.system(cmd) 只能獲得命令是否能執行成功。即結果為0或者非0標識是否執行成功。而有時我們希望即擷取到是否成功,同時也擷取命令的執行結果。這時就可以使用commands了,通過它可以同時擷取命令的執行結果輸出和結果。執行個體如下:
1: import commands
2:
3: ret, output = commands.getstatusoutput('ls')
4: print ret
5: print output
這樣ret就反饋是否執行成功,比如為0(成功) 或者非0(不成功)output 用來擷取ls命令的執行結果。 註:查看python api文檔:commands.getstatusoutput(
cmd)
Execute the string cmd in a shell with os.popen() and
return a 2-tuple (status, output). cmd is actually run as { cmd ; } 2>&1,
so that the returned output will contain output or error messages. A trailing newline is stripped from the output. The exit status for the command can be interpreted according to the rules for the C function wait().
注意該命令會將錯誤輸出資料流重新導向到標準輸出資料流中,因此output也會儲存錯誤輸出。
如下是一個擷取機器eth0 網卡ip的使用樣本。
cmd='''ifconfig eth0|grep "inet "|awk '{print $2}'|awk -F":" '{print $2}' '''
ret,ip = commands.getstatusoutput(cmd)
#print ip, ret
if ret != 0 :
print "get ip failed";
sys.exit(2)