“Ejecute un script de shell desde Python” Código de respuesta

Python ejecuta un comando de sistema

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

comando de shell de python run

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

Cómo ejecutar comandos bash en el script de python

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

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

Cómo ejecutar el comando shell en python

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

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 “Ejecute un script de shell desde Python”

Preguntas similares a “Ejecute un script de shell desde Python”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código