嘿伙计们,我有一个问题。
我正在尝试将在脚本 a 中找到的变量 x 发送到脚本 b,然后使用该变量执行脚本 b。
例子:
脚本
x = 10
ssh = paramiko.SSHClient()
ssh.connect(server, username=username, password=password)
ssh_stdin, ssh_stdout, ssh_stderr = ssh.exec_command(x >> scriptB.py)
ssh_stdin, ssh_stdout, ssh_stderr = ssh.exec_command(./scriptB.py)
脚本 b
y = x
print y
关于我如何做到这一点的任何想法?
谢谢