在子进程中使用Popen实用程序运行系统命令

时间:2019-03-21 11:19:02

标签: python-3.x

如何定义一个接受系统命令,在后台运行命令并返回结果的函数。

def run_process(cmd_args):
    with open("echo",cmd_args) as p:
        result = p.communicate()
    return print(result)

没有得到想要的结果。

0 个答案:

没有答案