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 命令并实时打印输出的主要内容,如果未能解决你的问题,请参考以下文章

Python执行 SQL 命令并实时打印输出

Python通过Python执行Shell指令SQL语句

Python通过Python执行Shell指令SQL语句

python执行shell实时输出,并返回code

Python获取命令实时输出-原样彩色输出并返回输出结果

Go 执行命令行并实时打印输出