我们为什么要在subprocess.Popen中使用stdout = PIPE?

时间:2013-05-27 10:26:14

标签: python process command pipe

from subprocess import PIPE,Popen

p = Popen("ls -l",shell=True,stderr=PIPE,stdout=PIPE)
(out,err) = p.communicate()
print(out, err)

在上面的Popen调用中,如果我删除stdout=PIPE,我会在输出后ls -l的每个列表后获取换行符。但是如果使用stdout=PIPE,我会显示\n,而不是换行符,如下所示

b'total 67092\n-rw-r--r--  1 root root      171 May 27 09:08 new.py\n-rw-r--r--  1   
    root root       74 May 12 18:14 abcd.conf\n-rwxr-xr-x  1 root root     5948 May 13 13:21 abxyz.sh\ndrwxr-xr-x  2 root root     4096 May 13
12:39 log\ndrwxrwxrwx  3 root root     4096 May 14 16:02
newpy\n-rw-r--r--  1 root root      134 May 27 10:13
pipe.py\n-rw-r--r--  1 root root      155 May 27 10:07
proc.py\ndrwxrwxrwx  3 root root     4096 May 14 14:29 py\ndrwxr-xr-x
16 1000 1000\n' b''

PIPE如何subprocess.Popen完全有效?我们为什么需要它?我没有使用它也得到了正确的输出?我们是否使用它来获取stderr,stdout?

1 个答案:

答案 0 :(得分:5)

删除print()电话以查看差异。

当您不将ls输出传递给Python时,它会直接显示在您的终端上;它的输出到你的终端。如果将它传递给Python,您可以将整个内容视为字节,包括换行字节(表示为\n)。

如果您希望按字面打印换行符,请解码结果:

print(out.decode('utf8'))