就 Jenkins 管道步骤中的 运行 shell 脚本而言,""" 和 ''' 之间有什么区别?
What's the difference between """ and ''' in terms of running a shell script within a Jenkins pipeline step?
在 Jenkins 管道中,有什么区别:
sh """
...
...
...
"""
和
sh '''
...
...
...
'''
提前致谢
都是多行字符串
第一个带"""
can be templated into a GroovyString
的多行字符串
第二个 '''
不能 (and is just a java String with newlines)
我已经链接到相关文档
在 Jenkins 管道中,有什么区别:
sh """
...
...
...
"""
和
sh '''
...
...
...
'''
提前致谢
都是多行字符串
第一个带"""
can be templated into a GroovyString
第二个 '''
不能 (and is just a java String with newlines)
我已经链接到相关文档