“Chamada de script de shell do Python” Respostas de código

Execute um script de shell do Python

import subprocess

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

Chamada de script de shell do Python

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

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

Respostas semelhantes a “Chamada de script de shell do Python”

Perguntas semelhantes a “Chamada de script de shell do Python”

Procure respostas de código populares por idioma

Procurar outros idiomas de código