Python取得コマンドリアルタイム出力-そのままカラー出力し出力結果を返す
1634 ワード
実験の結果,効果は良好であることが分かった.
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import os
import subprocess
# , ,
def run(command):
subprocess.call(command, shell=True)
# ,
def sh(command, print_msg=True):
p = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
lines = []
for line in iter(p.stdout.readline, b''):
line = line.rstrip().decode('utf8')
if print_msg:
print(">>>", line)
lines.append(line)
return lines
print('run():')
run("ping www.baidu.com")
print('
sh():')
run("ping www.baidu.com")