Answers for "shell script to run a python script"

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

Code answers related to "shell script to run a python script"

Python Answers by Framework

Browse Popular Code Answers by Language