Answers for "How to run bash script in python"

22

execute command in python script

import os

os.system("ma Commande")

#Exemple:

os.system("cd Documents")
Posted by: Guest on June-10-2020
5

How to run bash script in python

import subprocess
print "start"
subprocess.call("sleep.sh")
print "end"
Posted by: Guest on May-20-2020
2

how to execute bash commands in python script

import subprocess
subprocess.call(["sudo", "apt", "update"])
Posted by: Guest on November-17-2019
-2

bash script python

subscription-manager register --username=admin --password=secret
Posted by: Guest on February-22-2021

Code answers related to "How to run bash script in python"

Python Answers by Framework

Browse Popular Code Answers by Language