python 常用代碼學習筆記之commands模組

來源:互聯網
上載者:User
通常我們調用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)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.