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

Posted testway

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jenkins执行shell命令提示找不到命令解决办法相关的知识,希望对你有一定的参考价值。

用jenkins执行shell脚本,执行一条命令:

#唤醒休眠手机
adb shell input keyevent 2

 

提示:

[adb] $ /bin/sh -xe /Users/xxxxx/tools/apache-tomcat-8.5.30/temp/jenkins8525959692743554347.sh
+ adb shell input keyevent 26
/Users/xxxxx/tools/apache-tomcat-8.5.30/temp/jenkins8525959692743554347.sh: line 4: adb: command not found
Build step ‘执行 shell‘ marked build as failure
Finished: FAILURE


原因:在jenkins shell中执行没有加载/etc/profile .bash_profile中的环境变量
需要在shell 命令前面加一条申明:
#!/bin/bash -il
#!/bin/bash -il

#唤醒休眠手机
adb shell input keyevent 26

 

这样就能正常执行命令了。

 

[adb] $ /bin/bash -il /Users/xxxx/tools/apache-tomcat-8.5.30/temp/jenkins3562542453282352376.sh
bash: no job control in this shell
Restored session: 2018年 5月 4日 星期五 15时12分55秒 CST
Saving session...
...saving history...
...completed.
Finished: SUCCESS




以上是关于jenkins执行shell命令提示找不到命令解决办法的主要内容,如果未能解决你的问题,请参考以下文章

jenkins 上命令各种找不到问题

jenkins执行shell命令,有时会提示“Command not found”

关于linux shell执行文件找不到的问题

Ubuntu执行命令时,不sudo提示权限不足,sudo提示找不到该命令

linux sudo时说找不到cd命令, 怎么解决

linux定时任务shell脚本开头如下 cd ~ . .bash_profile 定时任务执行后提示找不到.bash_profile啥情况