Deolater
0
Q:

python execute shell command and get output

import subprocess
subprocess.call("command1")
subprocess.call(["command1", "arg1", "arg2"])
3
import subprocess
process = subprocess.Popen(['echo', 'More output'],
                     stdout=subprocess.PIPE, 
                     stderr=subprocess.PIPE)
stdout, stderr = process.communicate()
stdout, stderr
1
>>> subprocess.check_output(['ls', '-l'])
b'total 0\n-rw-r--r--  1 memyself  staff  0 Mar 14 11:04 files\n'
0

New to Communities?

Join the community