Shell函數傳回值,一般有3種方式:return,argv,echo
1) return 語句
shell函數的傳回值,可以和其他語言的傳回值一樣,通過return語句返回。
樣本:
#!/bin/bash -function mytest(){ echo "arg1 = $1" if [ $1 = "1" ] ;then return 1 else return 0 fi}echo echo "mytest 1"mytest 1echo $? # print return resultecho echo "mytest 0"mytest 0echo $? # print return resultecho echo "mytest 2"mytest 2echo $? # print return resultechoecho "mytest 1 = "`mytest 1`if mytest 1 ; then echo "mytest 1"fiechoecho "mytest 0 = "`mytest 0`if mytest 0 ; then echo "mytest 0"fiechoecho "if fasle" # if 0 is errorif false; then echo "mytest 0"fiechomytest 1res=`echo $?` # get return resultif [ $res = "1" ]; then echo "mytest 1"fiechomytest 0res=`echo $?` # get return resultif [ $res = "0" ]; then echo "mytest 0"fiecho echo "end"
結果:
mytest 1
arg1 = 1
1
mytest 0
arg1 = 0
0
mytest 2
arg1 = 2
0
mytest 1 = arg1 = 1
arg1 = 1
mytest 0 = arg1 = 0
arg1 = 0
mytest 0
if fasle
arg1 = 1
mytest 1
arg1 = 0
mytest 0
end
先定義了一個函數mytest,根據它輸入的參數是否為1來return 1或者return 0.
擷取函數的傳回值通過調用函數,或者最後執行的值獲得。
另外,可以直接用函數的傳回值用作if的判斷。
注意:return只能用來返回整數值,且和c的區別是返回為正確,其他的值為錯誤。
2) argv全域變數
這種就類似於C語言中的全域變數(或環境變數)。
樣本:
#!/bin/bash -g_var=function mytest2(){ echo "mytest2" echo "args $1" g_var=$1 return 0}mytest2 1echo "return $?"echoecho "g_var=$g_var"
結果:
mytest2
args 1
return 0
g_var=1
函數mytest2通過修改全域變數的值,來返回結果。
註: 以上兩個方法失效的時候
以上介紹的這兩種方法在一般情況下都是好使的,但也有例外。
樣本:
#!/bin/bash -function mytest3(){ grep "123" test.txt | awk -F: '{print $2}' | while read line ;do echo "$line" if [ $line = "yxb" ]; then return 0 # return to pipe only fi done echo "mytest3 here " return 1 # return to main process}g_var=function mytest4(){ grep "123" test.txt | awk -F: '{print $2}' | while read line ;do echo "$line" if [ $line = "yxb" ]; then g_var=0 echo "g_var=0" return 0 # return to pipe only fi done echo "mytest4 here " return 1}mytest3echo $?echomytest4echo $?echoecho "g_var=$g_var"
其中,test.txt 檔案中的內容如下:
456:kkk
123:yxb
123:test
結果:
yxb
mytest3 here
1
yxb
g_var=0
mytest4 here
1
g_var=
可以看到mytest3在return了以後其實沒有直接返回,而是執行了迴圈體後的語句,同時看到mytest4中也是一樣,同時,在mytest4中,對全域變數的修改也無濟於事,全域變數的值根本就沒有改變。這個是什麼原因那?
筆者認為,之所以return語句沒有直接返回,是因為return語句是在管道中執行的,管道其實是另一個子進程,而return只是從子進程中返回而已,只是while語句結束了。而函數體之後的語句會繼續執行。
同理,全域變數在子進程中進行了修改,但是子進程的修改沒有辦法反應到父進程中,全域變數只是作為一個環境變數傳入子進程,子進程修改自己的環境變數,不會影響到父進程。
因此在寫shell函數的時候,用到管道(cmd &後台進程也一樣)的時候一定要清楚此刻是從什麼地方返回。
3) echo 傳回值
其實在shell中,函數的傳回值有一個非常安全的返回方式,即通過輸出到標準輸出返回。因為子進程會繼承父進程的標準輸出,因此,子進程的輸出也就直接反應到父進程。因此不存在上面提到的由於管道導致傳回值失效的情況。
在外邊只需要擷取函數的傳回值即可。
樣本:
#!/bin/bash ############################################### Author : IT-Homer# Date : 2012-09-06 # Blog : http://blog.csdn.net/sunboy_2050##############################################function mytest5(){ grep "123" test.txt | awk -F: '{print $2}' | while read line; do if [ $line = "yxb" ]; then echo "0" # value returned first by this function return 0 fi done return 1}echo '$? = '"$?"result=$(mytest5)echo "result = $result"echoif [ -z $result ] # string is nullthen echo "no yxb. result is empyt"else echo "have yxb, result is $result"fi
結果:
$? = 0
result = 0
have yxb, result is 0
這個方式雖然好使,但是有一點一定要注意,不能向標準輸出一些不是結果的東西,比如調試資訊,這些資訊可以重新導向到一個檔案中解決,特別要注意的是,用到比如grep這樣的命令的時候,一定要記得1>/dev/null 2>&1來避免這些命令的輸出。
參考推薦:
Shell函數傳回值
Linux 之 shell 比較子(推薦)
Linux Shell學習簡單小結(推薦)
SHELL學習筆記----IF條件判斷,判斷條件