Python 執行 Linux 作業系統命令
在開發運維指令碼過程中,經常需要執行一些作業系統命令,常用方法如下:
1、使用 os.system
>>> import os
>>> cmd = 'ls /'
>>> res = os.system(cmd)
bin boot data dev etc home lib lib64 media mnt opt oracle proc root run sbin srv sys tmp usr var
>>> print(res)
0
特點:
(1)Python 內建方法,執行成功返回 0,並在標準輸出列印命令執行結果
(2)不能返回命令的執行結果
2、使用 commands.getstatusoutput
>>> import os commands
>>> cmd = 'ls /'
>>> status,output = commands.getstatusoutput(cmd)
status 為命令執行的狀態,成功返回 0 ,出錯返回非 0 值;
output 是命令的執行結果
特點:
(1)commands 只能在 Python2.x 版本使用,而且並不是每一個 Python2.x 版本 都自帶了該模組;
(2)commands 包在 Python3 中已經廢棄
3、使用 subprocess.Popen
>>> from subprocess import Popen, PIPE
>>> process = Popen(cmd, shell=True, stdout=PIPE, stderr=PIPE)
>>> stdout, stderr = process.communicate()
stdout 為命令執行結果,stderr 為命令錯誤資訊。注意,某些命令即便執行成功,也會有錯誤提示資訊,但不影響結果。
特點:
(1)Python2.x 和 Python3.x 內建模組
(2)可以同時返回命令執行結果和錯誤資訊
(3)可以獲取到命令的退出碼
綜上,推薦使用第三種方法。
一個執行作業系統命令的函式可以封裝如下,支援基於互信的遠端節點命令執行,返回標註輸出、標註錯誤和退出碼
from subprocess import Popen, PIPE
def exec_command(shell_cmd, hostname=None):
if hostname:
p = Popen('/usr/bin/ssh -Tq '+hostname, shell=True, stdout=PIPE, stdin=PIPE)
p.stdin.write(str.encode(shell_cmd))
p.stdin.flush()
else:
p = Popen(shell_cmd, shell=True, stdout=PIPE, stdin=PIPE)
stdout, stderr = p.communicate()
if stdout:
stdout = stdout.decode()
if stderr:
stderr = stderr.decode()
return stdout, stderr, p.poll()
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31560527/viewspace-2658443/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- java 執行作業系統命令Java作業系統
- Linux作業系統 paste命令Linux作業系統AST
- Linux系統執行命令方法Linux
- Linux作業系統執行級別介紹Linux作業系統
- paramiko執行多個作業系統命令並返回作業系統
- 作業系統-執行緒作業系統執行緒
- Python-呼叫執行系統命令Python
- 作業系統:多執行緒作業系統執行緒
- Python執行作業系統命令並取得返回值和退出碼,支援有互信的遠端執行Python作業系統
- LINUX作業系統知識:程式與執行緒詳解Linux作業系統執行緒
- 【作業系統】程式與執行緒作業系統執行緒
- 作業系統的執行環境作業系統
- 如何使用Python執行系統命令?Python學習教程!Python
- 【linux】Linux作業系統Linux作業系統
- Linux 作業系統Linux作業系統
- Linux作業系統Linux作業系統
- python執行系統命令四種方法比較Python
- 10.19:xshell、作業系統、系統命令作業系統
- Linux作業系統有哪些發行版本?Linux作業系統
- 作業系統與Linux作業系統Linux
- Linux作業系統概述Linux作業系統
- 作業系統中的執行緒種類作業系統執行緒
- 【作業系統】1.程序和執行緒作業系統執行緒
- Java程式執行系統命令Java
- linux-10-xshell介紹-作業系統的啟動流程-系統命令Linux作業系統
- Python中執行系統命令常見的幾種方法Python
- python中使用subprocess批量執行linux下命令PythonLinux
- python中使用subprocess批次執行linux下命令PythonLinux
- Linux 作業系統指令碼格式問題導致指令碼無法執行Linux作業系統指令碼
- Linux作業系統之命令解釋:ls -l|grep ^-|wc -lLinux作業系統
- 作業系統——深入理解程式和執行緒作業系統執行緒
- 作業系統-執行緒和程式的區別作業系統執行緒
- 作業系統複習(程式、執行緒、死鎖)作業系統執行緒
- 作業系統_程式和執行緒的區別作業系統執行緒
- 作業系統是什麼?Linux是什麼作業系統?作業系統Linux
- linux/OSX中“DD”命令製作ISO映象作業系統安裝U盤Linux作業系統
- linux作業系統介紹Linux作業系統
- 科普帖:Linux作業系統Linux作業系統