“Führen Sie ein Shell -Skript von Python aus” Code-Antworten

Python führen einen Systembefehl aus

import os
cmd = "git --version"
returned_value = os.system(cmd)  # returns the exit code in unix
Mattalui

Python Run Shell -Befehl

import subprocess
process = subprocess.Popen(['echo', 'More output'],
                     stdout=subprocess.PIPE, 
                     stderr=subprocess.PIPE)
stdout, stderr = process.communicate()
stdout, stderr
Kaotik

So führen Sie Bash -Befehle im Python -Skript aus

import subprocess
subprocess.call(["sudo", "apt", "update"])
Common Melba Finch

Führen Sie ein Shell -Skript von Python aus

import subprocess

output = subprocess.check_output('pidstat -p ALL'.split(' '), stderr=subprocess.STDOUT, universal_newlines=True)
print(output)
Wandering Willet

So führen Sie den Befehl Shell in Python aus

import subprocess

process = subprocess.Popen(['echo', 'hi'],
                           stdout=subprocess.PIPE,
                           stderr=subprocess.PIPE)
out, err = process.communicate()
print(out) # hi
print(err) # None
Happy Friend

Rufen Sie das Shell -Skript von Python an

import subprocess
subprocess.call(["./shell.sh"])

# Make sure that "shell.sh" has "+x" permissions
Graceful Gull

Ähnliche Antworten wie “Führen Sie ein Shell -Skript von Python aus”

Fragen ähnlich wie “Führen Sie ein Shell -Skript von Python aus”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen