我有一个 Python 例程,它调用某种 CLI(例如 telnet),然后在其中执行命令。问题是有时 CLI 拒绝连接并且在主机 shell 中执行命令会导致各种错误。我的想法是在调用 CLI 后检查 shell 提示符是否改变。
问题是:如何在 Python 中获取 shell 提示字符串?
回显 PS1 不是解决方案,因为某些 CLI 无法运行它,并且它返回一个类似符号的字符串而不是实际提示:
SC-2-1:~ # echo $PS1
\[\]\h:\w # \[\]
编辑
我的日常:
def run_cli_command(self, ssh, cli, commands, timeout = 10):
''' Sends one or more commands to some cli and returns answer. '''
try:
channel = ssh.invoke_shell()
channel.settimeout(timeout)
channel.send('%s\n' % (cli))
if 'telnet' in cli:
time.sleep(1)
time.sleep(1)
# I need to check the prompt here
w = 0
while (channel.recv_ready() == False) and (w < timeout):
w += 1
time.sleep(1)
channel.recv(9999)
if type(commands) is not list:
commands = [commands]
ret = ''
for command in commands:
channel.send("%s\r\n" % (command))
w = 0
while (channel.recv_ready() == False) and (w < timeout):
w += 1
time.sleep(1)
ret += channel.recv(9999) ### The size of read buffer can be a bottleneck...
except Exception, e:
#print str(e) ### for debugging
return None
channel.close()
return ret
这里需要一些解释:ssh 参数是一个 paramiko.SSHClient() 实例。我使用此代码登录服务器,然后从那里调用另一个 CLI,它可以是 SSH、telnet 等。