首页 > Linux研究 > Linux Shell编程(10):Shell 函数
2016
11-04

Linux Shell编程(10):Shell 函数

 

函数可以让我们将一个复杂功能划分成若干模块,让程序结构更加清晰,代码重复利用率更高。像其他编程语言一样,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”。

如果一定要让函数返回字符串,那么可以先定义一个变量,用来接收函数的计算结果,脚本在需要的时候访问这个变量来获得函数返回值。

先来看一个例子:

  1. #!/bin/bash

  2.  

  3. # Define your function here

  4. Hello () {

  5. echo "Url is http://www.ttfde.og/shell/"

  6. }

  7.  

  8. # Invoke your function

  9. Hello

运行结果:

$./test.sh
Hello World
$

调用函数只需要给出函数名,不需要加括号。

再来看一个带有return语句的函数:

  1. #!/bin/bash

  2. funWithReturn(){

  3. echo "The function is to get the sum of two numbers..."

  4. echo -n "Input first number: "

  5. read aNum

  6. echo -n "Input another number: "

  7. read anotherNum

  8. echo "The two numbers are $aNum and $anotherNum !"

  9. return $(($aNum+$anotherNum))

  10. }

  11. funWithReturn

  12. # Capture value returnd by last command

  13. ret=$?

  14. echo "The sum of two numbers is $ret !"

运行结果:

The function is to get the sum of two numbers...
Input first number: 25
Input another number: 50
The two numbers are 25 and 50 !
The sum of two numbers is 75 !

函数返回值在调用该函数后通过 $? 来获得。

再来看一个函数嵌套的例子:

  1. #!/bin/bash

  2.  

  3. # Calling one function from another

  4. number_one () {

  5. echo "Url_1 is http://www.ttfde.org/shell/"

  6. number_two

  7. }

  8.  

  9. number_two () {

  10. echo "Url_2 is http://www.ttfde.top/xitong/"

  11. }

  12.  

  13. number_one

运行结果:

Url_1 is http://www.ttfde.top/shell/
Url_2 is http://www.ttfde.top/xitong/

像删除变量一样,删除函数也可以使用 unset 命令,不过要加上 .f 选项,如下所示:

  1. $unset .f function_name

如果你希望直接从终端调用函数,可以将函数定义在主目录下的 .profile 文件,这样每次登录后,在命令提示符后面输入函数名字就可以立即调用。

 

在Shell中,调用函数时可以向其传递参数。在函数体内部,通过 $n 的形式来获取参数的值,例如,$1表示第一个参数,$2表示第二个参数...
带参数的函数示例:

  1. #!/bin/bash

  2. funWithParam(){

  3. echo "The value of the first parameter is $1 !"

  4. echo "The value of the second parameter is $2 !"

  5. echo "The value of the tenth parameter is $10 !"

  6. echo "The value of the tenth parameter is ${10} !"

  7. echo "The value of the eleventh parameter is ${11} !"

  8. echo "The amount of the parameters is $# !"  # 参数个数

  9. echo "The string of the parameters is $* !"  # 传递给函数的所有参数

  10. }

  11. funWithParam 1 2 3 4 5 6 7 8 9 34 73

运行脚本:
The value of the first parameter is 1 !
The value of the second parameter is 2 !
The value of the tenth parameter is 10 !
The value of the tenth parameter is 34 !
The value of the eleventh parameter is 73 !
The amount of the parameters is 12 !
The string of the parameters is 1 2 3 4 5 6 7 8 9 34 73 !"
注意,$10 不能获取第十个参数,获取第十个参数需要${10}。当n>=10时,需要使用${n}来获取参数。
另外,还有几个特殊变量用来处理参数,前面已经提到:
特殊变量说明
$#传递给函数的参数个数。
$*显示所有传递给函数的参数。
$@与$*相同,但是略有区别,请查看Shell其他章节。
$?函数的返回值。
作者:admin
admin
TTF的家园-www.ttfde.top 个人博客以便写写东西,欢迎喜欢互联网的朋友一起交流!

本文》有 0 条评论

留下一个回复