1. 程式人生 > 程式設計 >Python呼叫shell命令常用方法(4種)

Python呼叫shell命令常用方法(4種)

方法一、使用os模組的system方法:os.system(cmd),其返回值是shell指令執行後返回的狀態碼,int型別,0表示shell指令成功執行,256表示未找到,該方法適用於shell命令不需要輸出內容的場景。

舉例說明:

1. 列舉當前目錄下的所有檔案。

import os
val = os.system('ls -al')
print val

Python呼叫shell命令常用方法(4種)

沒有找到時,sh返回的狀態碼是1,而適用python呼叫,返回的是:256

Python呼叫shell命令常用方法(4種)

方法二、使用os.popen(),該方法以檔案的形式返回shell指令執行後的結果,需要獲取內容時可使用read()或readlines()方法,舉例如下:

Python呼叫shell命令常用方法(4種)

Python呼叫shell命令常用方法(4種)

方法三、使用commands模組,有三個方法可以使用:

(1)commands.getstatusoutput(cmd),其以字串的形式返回的是輸出結果和狀態碼,即(status,output)。

(2)commands.getoutput(cmd),返回cmd的輸出結果。

(3)commands.getstatus(file),返回ls -l file的執行結果字串,呼叫了getoutput,不建議使用此方法

Python呼叫shell命令常用方法(4種)

Python呼叫shell命令常用方法(4種)

方法四、subprocess模組,允許建立很多子程序,建立的時候能指定子程序和子程序的輸入、輸出、錯誤輸出管道,執行後能獲取輸出結果和執行狀態。

(1)subprocess.run():python3.5中新增的函式, 執行指定的命令, 等待命令執行完成後返回一個包含執行結果的CompletedProcess類的例項。

(2)subprocess.call():執行指定的命令, 返回命令執行狀態, 功能類似os.system(cmd)。

(3)subprocess.check_call():python2.5中新增的函式,執行指定的命令,如果執行成功則返回狀態碼, 否則丟擲異常。

說明:subprocess.run(args,*,stdin=None,input=None,stdout=None,stderr=None,shell=False,timeout=None,check=False,universal_newlines=False)

   subprocess.call(args,timeout=None)

   subprocess.check_call(args,timeout=None)

   args:表示shell指令,若以字串形式給出shell指令,如"ls -l "則需要使shell = Ture。否則預設已陣列形式表示shell變數,如"ls","-l"。

   當使用比較複雜的shell語句時,可以先使用shlex模組的shlex.split()方法來幫助格式化命令,然後在傳遞給run()方法或Popen。

Python呼叫shell命令常用方法(4種)

Python呼叫shell命令常用方法(4種)

附上python2.7中的subprocess模組原始碼供理解(pycharm檢視方法原始碼,ctrl+左鍵)。

# Stubs for subprocess

# Based on http://docs.python.org/2/library/subprocess.html and Python 3 stub

from typing import Sequence,Any,Mapping,Callable,Tuple,IO,Union,Optional,List,Text

_FILE = Union[None,int,IO[Any]]
_TXT = Union[bytes,Text]
_CMD = Union[_TXT,Sequence[_TXT]]
_ENV = Union[Mapping[bytes,_TXT],Mapping[Text,_TXT]]

# Same args as Popen.__init__
def call(args: _CMD,bufsize: int = ...,executable: _TXT = ...,stdin: _FILE = ...,stdout: _FILE = ...,stderr: _FILE = ...,preexec_fn: Callable[[],Any] = ...,close_fds: bool = ...,shell: bool = ...,cwd: _TXT = ...,env: _ENV = ...,universal_newlines: bool = ...,startupinfo: Any = ...,creationflags: int = ...) -> int: ...

def check_call(args: _CMD,creationflags: int = ...) -> int: ...

# Same args as Popen.__init__ except for stdout
def check_output(args: _CMD,creationflags: int = ...) -> bytes: ...

PIPE = ... # type: int
STDOUT = ... # type: int

class CalledProcessError(Exception):
  returncode = 0
  # morally: _CMD
  cmd = ... # type: Any
  # morally: Optional[bytes]
  output = ... # type: Any

  def __init__(self,returncode: int,cmd: _CMD,output: Optional[bytes] = ...) -> None: ...

class Popen:
  stdin = ... # type: Optional[IO[Any]]
  stdout = ... # type: Optional[IO[Any]]
  stderr = ... # type: Optional[IO[Any]]
  pid = 0
  returncode = 0

  def __init__(self,args: _CMD,executable: Optional[_TXT] = ...,stdin: Optional[_FILE] = ...,stdout: Optional[_FILE] = ...,stderr: Optional[_FILE] = ...,preexec_fn: Optional[Callable[[],Any]] = ...,cwd: Optional[_TXT] = ...,env: Optional[_ENV] = ...,startupinfo: Optional[Any] = ...,creationflags: int = ...) -> None: ...

  def poll(self) -> int: ...
  def wait(self) -> int: ...
  # morally: -> Tuple[Optional[bytes],Optional[bytes]]
  def communicate(self,input: Optional[_TXT] = ...) -> Tuple[Any,Any]: ...
  def send_signal(self,signal: int) -> None: ...
  def terminate(self) -> None: ...
  def kill(self) -> None: ...
  def __enter__(self) -> 'Popen': ...
  def __exit__(self,type,value,traceback) -> bool: ...

# Windows-only: STARTUPINFO etc.

STD_INPUT_HANDLE = ... # type: Any
STD_OUTPUT_HANDLE = ... # type: Any
STD_ERROR_HANDLE = ... # type: Any
SW_HIDE = ... # type: Any
STARTF_USESTDHANDLES = ... # type: Any
STARTF_USESHOWWINDOW = ... # type: Any
CREATE_NEW_CONSOLE = ... # type: Any
CREATE_NEW_PROCESS_GROUP = ... # type: Any

shell指令碼使用python指令碼的引數

寫一個hello.sh指令碼,需要傳入兩個引數:

Python呼叫shell命令常用方法(4種)

執行結果如下:

Python呼叫shell命令常用方法(4種)

在python指令碼中呼叫shell指令碼,並傳入引數,注意引數前後要有空格

Python呼叫shell命令常用方法(4種)

執行python指令碼

Python呼叫shell命令常用方法(4種)

到此這篇關於Python呼叫shell命令常用方法(4種)的文章就介紹到這了,更多相關Python呼叫shell命令內容請搜尋我們以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援我們!