在Python中处理PIPE - Raspbian Linux

时间:2015-04-03 06:10:35

标签: python linux pipe subprocess raspbian

伙计....我有一个通过subprocess Popen在Python程序中运行的脚本 命令用脚本的输出创建管道。这是工作。但是我想我必须使用.communicate()命令来处理来自我的程序的管道中的记录。我无法让它工作,但确实让它使用此代码。当我尝试使用.communicate命令时,我做错了什么?

import subprocess
nul_f = open('/dev/null', 'w') 
try:
  tcpdmp = subprocess.Popen(['/usr/bin/sudo /usr/sbin/tcpdump -A -n -p -l -             i eth0 -s0 -w - tcp dst port 80'], 
                    stdout=subprocess.PIPE, shell=True,
                    stderr=nul_f,)
  print 'My Records'
  i=0
#  end_of_pipe = tcpdmp.communicate()
  while i<10:
    i=i+1
    line = tcpdmp.stdout.readline()
    print '\t --', i, line
except KeyboardInterrupt:
  print 'done'
tcpdmp.terminate()
tcpdmp.kill()
nul_f.close()

感谢任何建议和批评...... RDK

ps ...在Raspberry pi上运行Raspbian Linux ....

1 个答案:

答案 0 :(得分:1)

.communicate() 等待以使子进程结束。 tcpdump并非以和平方式结束,这就是为什么您的代码有except KeyboardInterrupt(处理Ctrl + C)。

不相关:你可以用这个替换while循环:

from itertools import islice

for line in enumerate(islice(iter(tcpdump.stdout.readline, b''), 10), start=1):
    print '\t --', i, line, #NOTE: comma at the end to avoid double newlines

另见Stop reading process output in Python without hang?