我正在编写一个脚本来自动化Python中的某些命令行命令。目前,我正在打电话:
cmd = "some unix command" retcode = subprocess.call(cmd,shell=True)
但是我需要在远程计算机上运行一些命令。手动地,我将使用ssh登录,然后运行命令。我将如何在Python中自动执行此操作?我需要使用(已知)密码登录到远程计算机,所以我不能只使用cmd = ssh user@remotehost,我想知道是否应该使用一个模块?
cmd = ssh user@remotehost
ssh = paramiko.SSHClient() ssh.connect(server, username=username, password=password) ssh_stdin, ssh_stdout, ssh_stderr = ssh.exec_command(cmd_to_execute)