我正在尝试配置我的Jenkinsfile,以便我的主jenkins进入远程ec2服务器并在远程服务器上运行命令。到目前为止,我将我的主jenkins服务器公钥添加到远程ec2服务器的authorized_keys列表中,并且我能够将ssh添加到远程服务器中。我的Jenkinsfile的相关部分:
echo "===> about to SSH into the dev environment.."
sh '''#!/bin/bash
echo "===> in bash script now"
我正在尝试创建一个vbscript来连接到使用putty的FTP服务器。我遇到的问题是密码有一个;和“in it. I have to The password in”,并且还使用\来转义字符
例如:
-pw 3this;IsMyPwd“是我想要使用的
已尝试“3this;IsMyPwd”-> putty无法连接到远程服务器
-pw 3此;IsMyPwd“-> putty不连接到远程服务器
3此\;IsMyPwd\“-> putty未连接到远程服务器
3this;IsMyPwd\“-> putty连接到远程服务器,但要求输入密码或挂起
-pw 3this;IsMyPwd