将pexpect的输出重定向到文件

时间:2010-12-02 10:10:01

标签: python io-redirection pexpect

我试图在文件中捕获pexpect的输出。

Python 2.6.5 (r265:79063, Apr 16 2010, 13:09:56)
[GCC 4.4.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import pexpect
>>> child = pexpect.spawn('iostat 3')
>>> fout = file('mylogfile.txt','w')
>>> child.logfile = fout  
tazim@webdev:~/webexample$ ps -ef | grep iostat
tazim     4683  4675  0 12:49 pts/3    00:00:00 /usr/bin/iostat 3
tazim     4685  4560  0 12:51 pts/2    00:00:00 grep --color=auto iostat

但是mylogfile.txt没有收到输出。该文件已创建但为空。

1 个答案:

答案 0 :(得分:1)

你忘记了孩子的一些东西:) 添加它,例如:

child.expect(pexpect.EOF)