国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

解決python 執(zhí)行shell命令無(wú)法獲取返回值的問(wèn)題

瀏覽:98日期:2022-07-03 09:59:53

問(wèn)題背景:利用python獲取服務(wù)器中supervisor狀態(tài)信息時(shí)發(fā)現(xiàn)未能獲取到返回值。

python獲取執(zhí)行shell命令后返回值得幾種方式:

# 1.os模塊ret = os.popen('supervisorctl status')ret_data = ret.read()# 2.subprocess模塊ret = subprocess.Popen(’supervisorctl status’,shell=True,stdout=subprocess.PIPE)out,err = ret.communicate()# 3.commands模塊ret_data = commands.getoutput('supervisorctl status')# commands.getstatusoutput()還可獲取到命令執(zhí)行是否成功狀態(tài)

一開(kāi)始程序使用的是 os.popen() 方法,在交互式python shell或者IDE環(huán)境下使用上述方法都可以獲取到執(zhí)行的返回值,但當(dāng)使用腳本執(zhí)行時(shí)發(fā)現(xiàn)返回值為空,然后修改為使用 command.getoutput() 方法,這時(shí)獲取到返回值為 “sh: supervisorctl: command not found”。

由此可知是執(zhí)行命令時(shí)無(wú)法識(shí)別 supervisorctl 命令,但系統(tǒng)中是已經(jīng)安裝好supervisor的,于是使用 which supervisorctl 查看supervisorctl路徑,以帶路徑的方式執(zhí)行指令 “/usr/local/bin/supervisorctl status”,最后成功獲取到返回值。

總結(jié):

python使用shell命令操作非系統(tǒng)自帶工具時(shí),最好帶上工具路徑。

補(bǔ)充知識(shí):python 如何判斷調(diào)用系統(tǒng)命令是否執(zhí)行成功

首先我們要知道如何調(diào)用系統(tǒng)命令:

>>> os.system(’ls’)anaconda-ks.cfg install.log.syslog 模板 圖片 下載 桌面install.log 公共的 視頻 文檔 音樂(lè)0>>>>>> os.system(’lss’)sh: lss: command not found32512>>>

第一種,我們可以肉眼識(shí)別正確的會(huì)返回0,錯(cuò)誤的則是非0

第二種,使用if判斷調(diào)用系統(tǒng)命令返回值是否為0,如為0則不輸出,不為0則輸出 'Without the command'

-------------------錯(cuò)誤-------------------

>>> if os.system(’lss’) !=0:print ’Without the command’... sh: lss: command not foundWithout the command

-------------------正確-------------------

>>> if os.system(’ls’) !=0:print ’Without the command’... anaconda-ks.cfg install.log.syslog 模板 圖片 下載 桌面install.log 公共的 視頻 文檔 音樂(lè)>>>

以上這篇解決python 執(zhí)行shell命令無(wú)法獲取返回值的問(wèn)題就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: Python 編程
相關(guān)文章:
主站蜘蛛池模板: 长宁县| 西充县| 广丰县| 天全县| 梁河县| 塘沽区| 冕宁县| 宜州市| 镇赉县| 西安市| 上思县| 雷山县| 庆安县| 抚宁县| 吴桥县| 富宁县| 峡江县| 太湖县| 买车| 南部县| 嵊州市| 江城| 大竹县| 达州市| 漯河市| 祁连县| 丰都县| 新安县| 遵义市| 永修县| 辰溪县| 那坡县| 壶关县| 滦南县| 镶黄旗| 罗甸县| 平山县| 柘荣县| 萝北县| 天长市| 松江区|