2020
09-24
09-24
使用 Python ssh 远程登陆服务器的最佳方案
在使用Python写一些脚本的时候,在某些情况下,我们需要频繁登陆远程服务去执行一次命令,并返回一些结果。在shell环境中,我们是这样子做的。$sshpass-p${passwd}ssh-p${port}-l${user}-oStrictHostKeyChecking=noxx.xx.xx.xx"ls-l"然后你会发现,你的输出有很多你并不需要,但是又不去不掉的一些信息(也许有方法,请留言交流),类似这样host:xx.xx.xx.xx,port:xxWarning:Permanentlyadded'[xx.xx.xx.xx...
继续阅读 >