Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想制作一个与 SSH 服务器连接的 python 脚本,但由于我无法将密码作为 发送argv,我该怎么做?
argv
os.system("user@server password")
如果失败了,回报会是什么?
您可能应该考虑使用库或包装器来执行此操作,以使其正常工作并获得更多支持。下面是一些例子。
您可以使用一些第 3 个库,例如fabric或Paramiko
使用帕拉米科:
client = paramiko.SSHClient() client.connect('my.example.com', username='brandon', password=mypass)