jenkins 执行shell命令出错command not found 和No such file or directory

Posted 时光

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jenkins 执行shell命令出错command not found 和No such file or directory相关的知识,希望对你有一定的参考价值。

[root@localhost usr]# sh test.sh

command not found

-bash: cd: usr: No such file or directory

 

这里碰到了一个问题,我用Xshell远程登录到服务器,直接可以执行我的一个脚本,这个脚本里有一些命令是在PATH路径下的。

但是在Jenkins里面直接执行脚本却报错了,说是找不到这些命令,最后我在执行脚本前先export PATH = /home/....

把PATH设置了一下,结果就执行成功了,不知道为什么 jenkins远程登录默认读不到PATH.

 

还是出现找不到文件,修改如下:

#!/bin/bash
export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin:/usr/local/git/bin
pwd 打印当前运行目录
python3 Test_Suite.py  直接执行python脚本就可以了
ls -l ./ |awk \'/^d/ {print $NF}\' ##  调试用的 

 

以上是关于jenkins 执行shell命令出错command not found 和No such file or directory的主要内容,如果未能解决你的问题,请参考以下文章

jenkins执行shell脚本 命令被解析成两行了 导致自行不成功

jenkins执行shell命令提示找不到命令解决办法

在Jenkins中配置执行远程shell命令

远程(jenkins)调用shell 不能正常结束

Jenkin配置执行远程shell命令

在windows上使用jenkins远程执行linux shell命令