jenkins(3): jenkins执行shell命令
时间: 2023-10-20 16:22:40 浏览: 119
jenkins的windows节点执行shell脚本
Jenkins 可以执行 shell 命令,以下是一些示例:
1. 执行 Shell 脚本文件:
```
sh '/path/to/script.sh'
```
2. 执行 Shell 命令:
```
sh 'echo "Hello World"'
```
3. 执行多条 Shell 命令:
```
sh '''
echo "Hello World"
echo "How are you?"
'''
```
4. 执行带变量的 Shell 命令:
```
def name = "John"
sh "echo Hello ${name}"
```
注意,为了避免 shell 命令中的特殊字符被 Jenkins 解释,需要使用单引号或三个单引号将命令括起来。
阅读全文