我用google搜索"python ssh".有一个很棒的模块pexpect
,它可以使用ssh(带密码)访问远程计算机.
连接远程计算机后,我可以执行其他命令.但是我无法再次在python中获得结果.
p = pexpect.spawn("ssh user@remote_computer") print "connecting..." p.waitnoecho() p.sendline(my_password) print "connected" p.sendline("ps -ef") p.expect(pexpect.EOF) # this will take very long time print p.before
如何得到ps -ef
我的结果?
你尝试过更简单的方法吗?
>>> from subprocess import Popen, PIPE >>> stdout, stderr = Popen(['ssh', 'user@remote_computer', 'ps -ef'], ... stdout=PIPE).communicate() >>> print(stdout)
当然,这只能起作用,因为我已经ssh-agent
预先加载了远程主机知道的私钥.