使用远程ssh中的paramiko读取Perl脚本命令输出

时间:2015-06-26 15:13:03

标签: python linux perl ssh paramiko

我无法从shh读取perl脚本命令。我可以读取像ifconfig,pwd这样的东西,但我安装了一个用perl编写的应用程序,但在使用远程ssh时无法从其他服务器的命令读出。尝试了很多步骤

ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())

ssh.connect(hostname=sys_ip,
            port=22,
            username=sys_username,
            password=sys_password)

cmd = "cd /; export TERM=${TERM:-dumb}; commandforperlscript"

我没有输出也没有错误。

0 个答案:

没有答案