“Shell script para ejecutar python” Código de respuesta

Ejecutar el comando en el script de python

import os

os.system("ma Commande")

#Exemple:

os.system("cd Documents")
Cheerful Caracal

Shell script para ejecutar python

In the file job.sh, put this
#!/bin/sh
python python_script.py
Execute this command to make the script runnable for you : chmod u+x job.sh
Run it : ./job.sh
Fancy Ferret

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 “Shell script para ejecutar python”

Preguntas similares a “Shell script para ejecutar python”

Más respuestas relacionadas con “Shell script para ejecutar python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código