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?
繁星点点滴滴
慕森王
相关分类