如何在Unix

时间:2019-07-17 20:16:57

标签: shell unix jenkins sed

我正在尝试执行以下脚本,以从文件中获取currentpath字符串,并将其传递给下一个命令以查找和替换。直接在主机服务器中运行时,它工作正常,但是当尝试从jenkins构建步骤执行时,我遇到了找不到该文件的故障。

错误:sed:无法读取test.txt:没有此类文件或目录

期望的结果是,在存在“ currentPath”的任何地方使用“ newPath”更新“ test.txt”文件

代码:

user="testuser"
host="remotehost"
newPath="/testpath/"
filetoUpdate="./test.txt" # this is a file 
ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i ~/.ssh/id_rsa ${user}@${host} "currentPath="$(sed -n '/^PATH='/p $filetoUpdate | cut -d'=' -f2)" ; echo  "currentPath was "$currentPath"" ; sed -n 's|$currentPath|$newPath|g' $filetoUpdate"

1 个答案:

答案 0 :(得分:0)

问题之一是本地定义的变量newPath和filetoUpdate在远程主机上运行的脚本中将不可用。同样在此脚本中,仅currentPath =将在远程主机上执行,其余命令在本地运行。

我建议将脚本保存在单独的文件中。 test.sh:

newPath="/testpath/"
filetoUpdate="./test.txt" 
currentPath=`sed -n '/^PATH=/p' $filetoUpdate | cut -d= -f2`  
echo  "currentPath was "$currentPath""  
sed -i .bak "s|$currentPath|$newPath|g" $filetoUpdate

(我为现场编辑添加了-i) 并使用

命令运行它
ssh remotehost < t.sh