“Llame a shell script de python” Código de respuesta

Ejecute un script de shell desde Python

import subprocess

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

Llame a shell script de python

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

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

Respuestas similares a “Llame a shell script de python”

Preguntas similares a “Llame a shell script de python”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código