主頁 > 知識庫 > Linux Shell函數(shù)返回值

Linux Shell函數(shù)返回值

熱門標(biāo)簽:測繪地圖標(biāo)注名稱 德陽400電話申請 鶴崗400電話申請 外呼電話系統(tǒng)怎么操作 怎么在百度地圖標(biāo)注公司的位置 百度地圖標(biāo)注直線距離 智能電銷機(jī)器人有用嗎 商機(jī)地圖標(biāo)注 天津電話外呼系統(tǒng)排名

Shell函數(shù)返回值,一般有3種方式:return,argv,echo

1) return 語句
shell函數(shù)的返回值,可以和其他語言的返回值一樣,通過return語句返回。
示例:

#!/bin/bash -
function mytest()
{
  echo "arg1 = $1"
  if [ $1 = "1" ] ;then
    return 1
  else
    return 0
  fi
}

echo 
echo "mytest 1"
mytest 1
echo $?     # print return result

echo 
echo "mytest 0"
mytest 0
echo $?     # print return result

echo 
echo "mytest 2"
mytest 2
echo $?     # print return result


echo
echo "mytest 1 = "`mytest 1`
if mytest 1 ; then
  echo "mytest 1"
fi

echo
echo "mytest 0 = "`mytest 0`
if mytest 0 ; then
  echo "mytest 0"
fi

echo
echo "if fasle" # if 0 is error
if false; then
  echo "mytest 0"
fi


echo
mytest 1
res=`echo $?`  # get return result
if [ $res = "1" ]; then
  echo "mytest 1"
fi

echo
mytest 0
res=`echo $?`  # get return result
if [ $res = "0" ]; then
  echo "mytest 0"
fi



echo 
echo "end"

結(jié)果:
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

先定義了一個(gè)函數(shù)mytest,根據(jù)它輸入的參數(shù)是否為1來return 1或者return 0.
獲取函數(shù)的返回值通過調(diào)用函數(shù),或者最后執(zhí)行的值獲得。
另外,可以直接用函數(shù)的返回值用作if的判斷。
注意:return只能用來返回整數(shù)值,且和c的區(qū)別是返回為正確,其他的值為錯(cuò)誤。

2) argv全局變量
這種就類似于C語言中的全局變量(或環(huán)境變量)。
示例:

#!/bin/bash -

g_var=
function mytest2()
{
  echo "mytest2"
  echo "args $1"
  g_var=$1

  return 0
}

mytest2 1
echo "return $?"

echo
echo "g_var=$g_var"

結(jié)果:
mytest2
args 1
return 0

g_var=1

函數(shù)mytest2通過修改全局變量的值,來返回結(jié)果。

注: 以上兩個(gè)方法失效的時(shí)候
以上介紹的這兩種方法在一般情況下都是好使的,但也有例外。
示例:

#!/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
}

mytest3
echo $?

echo
mytest4
echo $?

echo
echo "g_var=$g_var"

其中,test.txt 文件中的內(nèi)容如下:
456:kkk
123:yxb
123:test
結(jié)果:
yxb
mytest3 here
1

yxb
g_var=0
mytest4 here
1

g_var=
可以看到mytest3在return了以后其實(shí)沒有直接返回,而是執(zhí)行了循環(huán)體后的語句,同時(shí)看到mytest4中也是一樣,同時(shí),在mytest4中,對全局變量的修改也無濟(jì)于事,全局變量的值根本就沒有改變。這個(gè)是什么原因那?
筆者認(rèn)為,之所以return語句沒有直接返回,是因?yàn)閞eturn語句是在管道中執(zhí)行的,管道其實(shí)是另一個(gè)子進(jìn)程,而return只是從子進(jìn)程中返回而已,只是while語句結(jié)束了。而函數(shù)體之后的語句會(huì)繼續(xù)執(zhí)行。
同理,全局變量在子進(jìn)程中進(jìn)行了修改,但是子進(jìn)程的修改沒有辦法反應(yīng)到父進(jìn)程中,全局變量只是作為一個(gè)環(huán)境變量傳入子進(jìn)程,子進(jìn)程修改自己的環(huán)境變量,不會(huì)影響到父進(jìn)程。
因此在寫shell函數(shù)的時(shí)候,用到管道(cmd 后臺進(jìn)程也一樣)的時(shí)候一定要清楚此刻是從什么地方返回。

3) echo 返回值
其實(shí)在shell中,函數(shù)的返回值有一個(gè)非常安全的返回方式,即通過輸出到標(biāo)準(zhǔn)輸出返回。因?yàn)樽舆M(jìn)程會(huì)繼承父進(jìn)程的標(biāo)準(zhǔn)輸出,因此,子進(jìn)程的輸出也就直接反應(yīng)到父進(jìn)程。因此不存在上面提到的由于管道導(dǎo)致返回值失效的情況。
在外邊只需要獲取函數(shù)的返回值即可。
示例:

#!/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"

echo
if [ -z $result ]    # string is null
then
  echo "no yxb. result is empyt"
else
  echo "have yxb, result is $result"
fi

結(jié)果:
$? = 0
result = 0

have yxb, result is 0
這個(gè)方式雖然好使,但是有一點(diǎn)一定要注意,不能向標(biāo)準(zhǔn)輸出一些不是結(jié)果的東西,比如調(diào)試信息,這些信息可以重定向到一個(gè)文件中解決,特別要注意的是,用到比如grep這樣的命令的時(shí)候,一定要記得1>/dev/null 2>1來避免這些命令的輸出。

您可能感興趣的文章:
  • PowerShell中簡單的自定義函數(shù)和調(diào)用函數(shù)例子
  • shell自定義函數(shù)及參數(shù)調(diào)用解析
  • 淺談Shell中的函數(shù)
  • Shell中關(guān)于時(shí)間和日期的函數(shù)總結(jié)
  • Linux 在Shell腳本中使用函數(shù)實(shí)例詳解
  • shell 使用數(shù)組作為函數(shù)參數(shù)的方法(詳解)
  • Shell使用Epoch進(jìn)行日期時(shí)間轉(zhuǎn)換和計(jì)算的幾個(gè)小函數(shù)
  • Linux Shell腳本系列教程(四):使用函數(shù)添加環(huán)境變量
  • 詳解shell 函數(shù)定義與調(diào)用

標(biāo)簽:鎮(zhèn)江 優(yōu)質(zhì)小號 百色 滁州 丹東 自貢 武漢 六盤水

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Linux Shell函數(shù)返回值》,本文關(guān)鍵詞  Linux,Shell,函數(shù),返回,值,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Linux Shell函數(shù)返回值》相關(guān)的同類信息!
  • 本頁收集關(guān)于Linux Shell函數(shù)返回值的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章