Answers for "python run a bash script"

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
0

call python from bash shell

#!/bin/sh
python python_script.py
Posted by: Guest on May-25-2021
1

run a shell script from python

import subprocess

output = subprocess.check_output('pidstat -p ALL'.split(' '), stderr=subprocess.STDOUT, universal_newlines=True)
print(output)
Posted by: Guest on June-12-2021

Python Answers by Framework

Browse Popular Code Answers by Language