有人可以帮忙找出这段代码的错误吗? 它没有显示任何东西
import paramiko
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(
paramiko.AutoAddPolicy())
ssh.connect('135.279.151.56', username='raft', password='raft01')
stdin, stdout, stderr = ssh.exec_command('top')
print stdout.readlines()
ssh.close()
答案 0 :(得分:0)
试试'top -b -n1' 它应该适合你。
-b用于批处理模式。没有输入被接受,并且在这里为1的-n次迭代之后退出顶部