Answers for "bash execute the output of a python script"

2

python execute shell command and get output

import subprocess
process = subprocess.Popen(['echo', 'More output'],
                     stdout=subprocess.PIPE, 
                     stderr=subprocess.PIPE)
stdout, stderr = process.communicate()
stdout, stderr
Posted by: Guest on March-07-2020
2

python run command and read output

>>> subprocess.check_output(['ls', '-l'])
b'total 0n-rw-r--r--  1 memyself  staff  0 Mar 14 11:04 filesn'
Posted by: Guest on August-10-2020

Code answers related to "bash execute the output of a python script"

Python Answers by Framework

Browse Popular Code Answers by Language