Answers for "bash how to execute command and get output python"

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
3

how to run linux command in python

import os
cmd = 'your command here'
os.system(cmd)
Posted by: Guest on May-18-2020

Code answers related to "bash how to execute command and get output python"

Python Answers by Framework

Browse Popular Code Answers by Language