Python执行 shell 命令并实时打印输出
Posted Alex Hub
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python执行 shell 命令并实时打印输出相关的知识,希望对你有一定的参考价值。
from subprocess import Popen, PIPE, STDOUT
def exe_command(command):
"""
执行 shell 命令并实时打印输出
:param command: shell 命令
:return: process, exitcode
"""
print(command)
process = Popen(command, stdout=PIPE, stderr=STDOUT, shell=True)
with process.stdout:
for line in iter(process.stdout.readline, b''):
print(line.decode().strip())
exitcode = process.wait()
return process, exitcode
以上是关于Python执行 shell 命令并实时打印输出的主要内容,如果未能解决你的问题,请参考以下文章