我有 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() 命令返回输出的任何其他方法?