读取pexpect sendline的输出

时间:2013-03-09 23:01:30

标签: python ssh sudo pexpect

我有pexpect工作,但我在从它打印输出时遇到问题。在我下面的测试脚本中,它创建了ssh连接,然后发送了一个sudo su - ,然后是我的密码,然后发送一行需要sudo访问权限的行(我还添加了几次p.interact()确保它在根)。我遇到的问题是返回我运行的命令的输出。最后,我想运行一些顶级命令,以及一些du -h和其他(更复杂的)空间命令。但是目前当它试图打印p.before时,我得到:

Traceback (most recent call last):
File "./ssh.py", line 37, in <module>
print p.before()
TypeError: 'str' object is not callable

这是我正在处理的脚本(已编辑以删除我的通行证等)

#!/usr/bin/env python

import pexpect
import struct, fcntl, os, sys, signal

def sigwinch_passthrough (sig, data):
    # Check for buggy platforms (see pexpect.setwinsize()).
    if 'TIOCGWINSZ' in dir(termios):
        TIOCGWINSZ = termios.TIOCGWINSZ
    else:
        TIOCGWINSZ = 1074295912 # assume
    s = struct.pack ("HHHH", 0, 0, 0, 0)
    a = struct.unpack ('HHHH', fcntl.ioctl(sys.stdout.fileno(), TIOCGWINSZ , s))
    global global_pexpect_instance
    global_pexpect_instance.setwinsize(a[0],a[1])

ssh_newkey = 'Are you sure you want to continue connecting'
p=pexpect.spawn('ssh user@localhost')
i=p.expect([ssh_newkey,'password:',pexpect.EOF,pexpect.TIMEOUT],1)
if i==0:
    print "I say yes"
    p.sendline('yes')
    i=p.expect([ssh_newkey,'password:',pexpect.EOF])
if i==1:
    print "I give password",
    p.sendline("mypassword")
elif i==2:
    print "I either got key or connection timeout"
    pass
elif i==3: #timeout
    pass
global global_pexpect_instance
global_pexpect_instance = p
p.sendline("sudo su -")
p.sendline("mypasswd")
p.sendline("mkdir /home/user/test")
print p.before

我正在使用此链接:http://linux.byexamples.com/archives/346/python-how-to-access-ssh-with-pexpect/

非常感谢任何帮助。

编辑:正如Armin Rigo在下面指出的那样。我打电话给p.before作为像p.before()这样的函数。我这个愚蠢的错误,因为这解释了为什么我今天得到这个错误,而不是昨天我在尝试这个时。在对我的脚本进行更改并修改正在发送的命令后,打印p.before,并且不返回任何输出。还有从sendline()命令返回输出的其他方法吗?

3 个答案:

答案 0 :(得分:1)

使用logfile,该logfile将所有输出存储在terminal.use示例代码中: -

child = pexpect.spawn("ssh user@localhost")
child.logfile = open("/tmp/mylog", "w")
child.expect(".*assword:")
child.send("guest\r")
child.expect(".*\$ ")
child.sendline("python -V\r")

打开日志文件,查看终端事件中的所有内容

答案 1 :(得分:0)

在sendline之后使用 child.read()

获取完整输出

e.g。

cmd_resp = pexpect.spawnu(cmd)    # for execution of the command
str_to_search = 'Please Enter The Password'
cmd_resp.sendline('yes')       # for sending the input 'yes'
resp = cmd_resp.expect([str_to_search, 'password:', EOF], timeout=30) # fetch the output status
if resp == 1:
   cmd_resp.sendline(password) 
   resp = cmd_resp.expect([str_to_search, 'outputString:', EOF], timeout=30)
   print(cmd_resp.read()) # to fetch the complete output log

答案 2 :(得分:0)

p.before是字符串-不是函数。要查看输出,您必须编写 print p.before。 希望对您有帮助