“Rufen Sie das Shell -Skript von Python an” Code-Antworten

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

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 “Rufen Sie das Shell -Skript von Python an”

Fragen ähnlich wie “Rufen Sie das Shell -Skript von Python an”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen