Answers for "python run bash command and get output another file"

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
0

how to save the command result with ! in python

subprocess = subprocess.Popen("echo Hello World", shell=True, stdout=subprocess.PIPE)
Posted by: Guest on September-19-2020

Code answers related to "python run bash command and get output another file"

Python Answers by Framework

Browse Popular Code Answers by Language