Answers for "python os.system get the output"

2

capture output of os.system in python

Capture output of os.system in python
Using popen:

import os
os.popen('cat /etc/services').read()

OR

import subprocess
proc = subprocess.Popen(["cat", "/etc/services"], stdout=subprocess.PIPE, shell=True)
(out, err) = proc.communicate()
print "program output:", out
Posted by: Guest on October-13-2021
0

python get output

>out = subprocess.Popen(['wc', '-l', 'my_text_file.txt'], 
           stdout=subprocess.PIPE, 
           stderr=subprocess.STDOUT)
Posted by: Guest on December-12-2020

Code answers related to "python os.system get the output"

Python Answers by Framework

Browse Popular Code Answers by Language