run windos command with python and print resualt code example
Example 1: python run command and read output
import subprocess, sys
cmd = "/usr/sbin/netstat -p tcp -f inet"
p = subprocess.Popen(cmd, shell=True, stderr=subprocess.PIPE)
while True:
out = p.stderr.read(1)
if out == '' and p.poll() != None:
break
if out != '':
sys.stdout.write(out)
sys.stdout.flush()
Example 2: python run command and read output
>>> subprocess.check_output(['ls', '-l'])
b'total 0\n-rw-r--r-- 1 memyself staff 0 Mar 14 11:04 files\n'