標籤:style blog http color io 使用 ar 檔案 sp
函數可以讓我們將一個複雜功能劃分成若干模組,讓程式結構更加清晰,代碼重複利用率更高。像其他程式設計語言一樣,Shell 也支援函數。Shell 函數必須先定義後使用。
Shell 函數的定義格式如下:
function_name () { list of commands [ return value ]}
如果你願意,也可以在函數名前加上關鍵字 function:
function function_name () { list of commands [ return value ]}
函數傳回值,可以顯式增加return語句;如果不加,會將最後一條命令運行結果作為傳回值。
Shell 函數傳回值只能是整數,一般用來表示函數執行成功與否,0表示成功,其他值表示失敗。如果 return 其他資料,比如一個字串,往往會得到錯誤提示:“numeric argument required”。
如果一定要讓函數返回字串,那麼可以先定義一個變數,用來接收函數的計算結果,指令碼在需要的時候訪問這個變數來獲得函數傳回值。
先來看一個例子:
#!/bin/bash# Define your function hereHello(){ echo "Url is http://www.so.com"}#Invoke your functionHello
運行結果:
Url is http://www.so.com
調用函數只需要給出函數名,不需要加括弧。
再來看一個帶有return語句的函數:
#!/bin/bashfunWithReturn(){ echo "The function is to get the sum of two numbers..." echo -n "Input first number: " read aNum echo -n "Input another number: " read anotherNum echo "The two numbers are $aNum and $anotherNum" return $(($aNum+$anotherNum))}funWithReturn#Capture value return by last commandret=$?echo "The sum of two numbers is $ret !"
運行結果:
The function is to get the sum of two numbers...Input first number: 3Input another number: 4The two numbers are 3 and 4The sum of two numbers is 7 !
函數傳回值在調用該函數後通過 $? 來獲得。
再來看一個函數嵌套的例子:
#!/bin/bash# Calling one function from anothernumber_one(){ echo "Url_1 is http://www.so.com" number_two}function number_two(){ echo "Url_2 is http://mai"}number_one
像刪除變數一樣,刪除函數也可以使用 unset 命令,不過要加上 .f 選項,如下所示:
$unset .f function_name
如果你希望直接從終端調用函數,可以將函數定義在主目錄下的 .profile 檔案,這樣每次登入後,在命令提示字元後面輸入函數名字就可以立即調用。
Shell函數:Shell函數傳回值、刪除函數、在終端調用函數