“Exécuter le script Python à partir du script bash” Réponses codées

Comment exécuter le script bash en python

import subprocess
print "start"
subprocess.call("sleep.sh")
print "end"
Cooperative Crab

Exécuter le script Python à partir du script bash

#!/bin/bash

# using the full path of the 'python3' command is not necessary but should used.
# you can get your full path of the python command by running `which python3`
/usr/bin/python3 python_script.py
Powerful Puma

Réponses similaires à “Exécuter le script Python à partir du script bash”

Questions similaires à “Exécuter le script Python à partir du script bash”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code