Heim > Artikel > Backend-Entwicklung > Der Unterprozess führt Linux-Befehle stapelweise in Python aus
In diesem Artikel wird ausführlich erläutert, wie Sie mithilfe von Unterprozessen Linux-Befehle stapelweise in Python ausführen können.
Die relevanten Module und Funktionen, die Shell-Befehle ausführen können, sind:
os.system
os.spawn
os.popen --obsolete
popen --obsolete
Befehle --obsolete, 3 . Entfernt von
Aufruf
führt den Befehl aus und gibt den Statuscode zurück
>>> import subprocess >>> ret = subprocess.call(["ls", "-l"], shell=False) total 4684 -rw-r--r-- 1 root root 454 May 5 12:20 aa.py -rw-r--r-- 1 root root 0 May 8 16:51 aa.txt -rw-r--r-- 1 root root 4783286 Apr 11 16:39 DockerToolbox.exe -rw-r--r-- 1 root root 422 May 5 12:20 ip_info.txt -rw-r--r-- 1 root root 718 Apr 19 10:52 my.cnf >>> ret = subprocess.call("ls -l", shell=True) total 4684 -rw-r--r-- 1 root root 454 May 5 12:20 aa.py -rw-r--r-- 1 root root 0 May 8 16:51 aa.txt -rw-r--r-- 1 root root 4783286 Apr 11 16:39 DockerToolbox.exe -rw-r--r-- 1 root root 422 May 5 12:20 ip_info.txt -rw-r--r-- 1 root root 718 Apr 19 10:52 my.cnf >>> print(ret) 0check_call
Führen Sie den Befehl aus. Wenn der Ausführungsstatuscode 0 ist, geben Sie 0 zurück, andernfalls wird eine Ausnahme ausgelöst
>>> subprocess.check_call(["ls", "-l"]) total 4684 -rw-r--r-- 1 root root 454 May 5 12:20 aa.py -rw-r--r-- 1 root root 0 May 8 16:51 aa.txt -rw-r--r-- 1 root root 4783286 Apr 11 16:39 DockerToolbox.exe -rw-r--r-- 1 root root 422 May 5 12:20 ip_info.txt -rw-r--r-- 1 root root 718 Apr 19 10:52 my.cnf 0 >>> subprocess.check_call("exit 1", shell=True) Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/local/python3.5/lib/python3.5/subprocess.py", line 581, in check_call raise CalledProcessError(retcode, cmd) subprocess.CalledProcessError: Command 'exit 1' returned non-zero exit status 1check_output
Führen Sie den Befehl aus. Wenn der Statuscode 0 ist, geben Sie das Ausführungsergebnis zurück. andernfalls eine Ausnahme auslösen
>>> subprocess.check_output(["echo", "Hello World!"]) b'Hello World!\n' >>> subprocess.check_output("exit 1", shell=True) Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/local/python3.5/lib/python3.5/subprocess.py", line 626, in check_output **kwargs).stdout File "/usr/local/python3.5/lib/python3.5/subprocess.py", line 708, in run output=stdout, stderr=stderr) subprocess.CalledProcessError: Command 'exit 1' returned non-zero exit status 1subprocess.Popen(...)
Wird zur Ausführung von Komplexen verwendet Systembefehle
args: Shell-Befehl, der ein String- oder Sequenztyp sein kann (z. B. Liste, Tupel)
Gewöhnliche Befehle ausführen
>>> import subprocess >>> ret1 = subprocess.Popen(["mkdir","t1"]) >>> ret2 = subprocess.Popen("mkdir t2", shell=True) >>> print(ret1) <subprocess.Popen object at 0x7f4d7609dd30> >>> print(ret2) <subprocess.Popen object at 0x7f4d7609dc18>
Es gibt zwei Arten von Befehlen, die in das Terminal eingegeben werden:
Eingabe, um die Ausgabe zu erhalten, wie zum Beispiel: ifconfig
Betreten Sie eine bestimmte Umgebung, verlassen Sie sich darauf und geben Sie sie dann ein, z. B.: Python
>>> import subprocess >>> obj = subprocess.Popen("mkdir t3", shell=True, cwd='/tmp/',) >>> import subprocess >>> obj = subprocess.Popen(["python"], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True) >>> obj.stdin.write("print(1)\n") 9 >>> obj.stdin.write("print(2)") 8 >>> obj.stdin.close() >>> cmd_out = obj.stdout.read() >>> obj.stdout.close() >>> cmd_error = obj.stderr.read() >>> obj.stderr.close() >>> print(cmd_out) 1 2 >>> print(cmd_error)
>>> import subprocess >>> >>> obj = subprocess.Popen(["python"], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True) >>> obj.stdin.write("print(1)\n") 9 >>> obj.stdin.write("print(2)") 8 >>> >>> out_error_list = obj.communicate() >>> print(out_error_list) ('1\n2\n', '')
>>> obj = subprocess.Popen(["python"], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True) >>> out_error_list = obj.communicate('print("hello")') >>> print(out_error_list) ('hello\n', '')
Verwandte Empfehlungen:
Verwenden Sie Python, um Shell-Skripte dynamisch auszuführen Übertragungsparameter und grundlegende Verwendung von UnterprozessenEinführung und Verwendung des Unterprozessmoduls
Detaillierte Einführung in das Subprozess-Unterprozesspaket der Python-Standardbibliothek
Das obige ist der detaillierte Inhalt vonDer Unterprozess führt Linux-Befehle stapelweise in Python aus. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!