import paramiko, commands
ssh_client = paramiko.SSHClient()
ssh_client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh_client.load_system_host_keys()
ssh_client.connect('xx.xx.x', username='abc',
key_filename='rsa')
line ="Hello"
stdin, stdout, stderr=ssh_client.exec_command('echo $line')
print stdout.readlines()
我想通过" line"内容回应。但我明白了 [u' \ n']作为输出。
我也试过echo \ $ line,echo" $ line"。但不要打招呼作为输出。
答案 0 :(得分:1)
远程shell无法访问您的程序变量,该命令必须在启动之前编写。
stdin, stdout, stderr = ssh_client.exec_command('echo "{0}"'.format(line))
请注意安全问题(感谢@Tripleee ),在 Python 3 中使用shlex.quote
来提高代码的健壮性:
stdin, stdout, stderr = ssh_client.exec_command('echo {}'.format(quote(line)))