python 3中 的subprocess

Posted GAO6

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 3中 的subprocess相关的知识,希望对你有一定的参考价值。

commands好像python3.6被去除了,它现在被subprocess替代了

FUNCTIONS
    getoutput(cmd)
        Return output (stdout or stderr) of executing cmd in a shell.

    getstatus(file)
        Return output of "ls -ld <file>" in a string.

    getstatusoutput(cmd)
        Return (status, output) of executing cmd in a shell.



import subprocess

(status, output) = subprocess.getstatusoutput(‘redis-cli -h 127.0.0.1 -p 6379 -n 0 keys *‘)
print (status, output)

 







以上是关于python 3中 的subprocess的主要内容,如果未能解决你的问题,请参考以下文章

Python2/3 中执行外部命令(Linux)和程序(exe) -- 子进程模块 subprocess

Python 3:子进程导致僵尸

Python 3 利用 subprocess 实现管道( pipe )交互操作读/写通信

我可以设置Python 3.5 subprocess.Popen管道编码吗?

如何在 Python 3 中使用 stdin 将字符串传递给 subprocess.run

python subprocess.getoutput函数