Answers for "run python with shell script"

3

how to execute bash commands in python script

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

call shell script from python

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

# Make sure that "shell.sh" has "+x" permissions
Posted by: Guest on May-09-2020

Code answers related to "run python with shell script"

Python Answers by Framework

Browse Popular Code Answers by Language