//獲取標準輸出
//第一種git
result = sh returnStdout: true ,script: "<shell command>" result = result.trim()
//第二種shell
result = sh(script: "<shell command>", returnStdout: true).trim()
//第三種spa
sh "<shell command> > commandResult" result = readFile('commandResult').trim()
//獲取執行狀態.net
//第一種code
result = sh returnStatus: true ,script: "<shell command>" result = result.trim()
//第二種blog
result = sh(script: "<shell command>", returnStatus: true).trim()
//第三種ip
sh '<shell command>; echo $? > status' def r = readFile('status').trim()
//無需返回值,僅執行shell命令ci
//最簡單的方式get
sh '<shell command>'
例如:jenkins
工做中須要獲取shell 命令的執行狀態,返回0或者非0
groovy語句寫法爲:
def exitValue = sh(script: "grep -i 'xxx' /etc/myfolder", returnStatus: true) echo "return exitValue :${exitValue}" if(exitValue != 0){ 執行操做 }
若是grep命令執行沒有報錯,正常狀況下exitValue爲0,報錯則爲非0
須要注意的是當命令中存在重定向的時候,會出現返回狀態異常,由於咱們要返回狀態,刪除重定向(&>/dev/null)便可,好比:
def exitValue = sh(script: "grep -i 'xxx' /etc/myfolder &>/dev/null", returnStatus: true) xxx不存在,正常邏輯是返回非0,可是實際中返回的是0 。能夠理解爲先執行命令而後賦值操做,相似下面的動做:(我的理解) sh "ls -l > commandResult" result = readFile('commandResult').trim()
groovy中存在另一種解析shell腳本的方法,在jenkins pipeline中會使用會報異常,jenkins相關資料中也沒有看到此種用法,應該是不支持
groovy.lang.MissingPropertyException: No such property: rhel for class: groovy.lang.Binding
寫法爲:
def command = "git log" def proc = command.execute() proc.waitFor() def status = proc.exitValue()
相關資料:
https://stackoverflow.com/questions/36547680/how-to-do-i-get-the-output-of-a-shell-command-executed-using-into-a-variable-frohttps://issues.jenkins-ci.org/browse/JENKINS-26133https://stackoverflow.com/questions/36956977/how-to-execute-a-command-in-a-jenkins-2-0-pipeline-job-and-then-return-the-stdou--------------------- 做者:liurizhou 來源:CSDN 原文:https://blog.csdn.net/liurizhou/article/details/86670092 版權聲明:本文爲博主原創文章,轉載請附上博文連接!