# 函数
# 函数定义
shell 中函数的定义格式如下:
[ function ] funname [()]
{
action;
[return int;]
}
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
说明:
- 可以带
function fun()
定义,也可以直接fun()
定义,不带任何参数。 - 参数返回,可以显示加:return 返回,如果不加,将以最后一条命令运行结果,作为返回值。 return 后跟数值 n(0-255)
下面的例子定义了一个函数并进行调用:
#!/bin/bash
demoFun(){
echo "This is my first shell function!"
}
echo "-----Execution-----"
demoFun
echo "-----Finished-----"
Output the result:
-----Execution-----
This is my first shell function!
-----Finished-----
1
2
3
4
5
6
7
8
9
10
11
12
13
14
2
3
4
5
6
7
8
9
10
11
12
13
14
下面定义一个带有 return 语句的函数:
#!/bin/bash
funWithReturn(){
echo "This function will add the two numbers of the input..."
echo "Enter the first number: "
read aNum
echo "Enter the second number: "
read anotherNum
echo "The two numbers are $aNum and $anotherNum !"
return $(($aNum+$anotherNum))
}
funWithReturn
echo "The sum of the two numbers entered is $? !"
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
输出类似下面:
This function will add the two numbers of the input...
Enter the first number:
1
Enter the second number:
2
The two numbers are 1 and 2 !
The sum of the two numbers entered is 3 !
1
2
3
4
5
6
7
2
3
4
5
6
7
- 函数返回值在调用该函数后通过
$?
来获得 - 所有函数在使用前必须定义。
# 不带参数没有返回值的函数
#!/bin/bash
function(){
echo "这是我的第一个 shell 函数!"
}
function
1
2
3
4
5
2
3
4
5
输出结果:
这是我的第一个 shell 函数!
1
# 有返回值的函数
输入两个数字之后相加并返回结果:
#!/bin/bash
funWithReturn(){
echo "输入第一个数字: "
read aNum
echo "输入第二个数字: "
read anotherNum
echo "两个数字分别为 $aNum 和 $anotherNum !"
return $(($aNum+$anotherNum))
}
funWithReturn
echo "输入的两个数字之和为 $?"
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
输出结果:
输入第一个数字:
1
输入第二个数字:
2
两个数字分别为 1 和 2 !
输入的两个数字之和为 3
1
2
3
4
5
6
2
3
4
5
6
# 带参数的函数
#!/bin/bash
funWithParam(){
echo "第一个参数为 $1 !"
echo "第二个参数为 $2 !"
echo "第十个参数为 $10 !"
echo "第十个参数为 ${10} !"
echo "第十一个参数为 ${11} !"
echo "参数总数有 $# 个!"
echo "作为一个字符串输出所有参数 $* !"
}
funWithParam 1 2 3 4 5 6 7 8 9 34 73
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
输出结果:
第一个参数为 1 !
第二个参数为 2 !
第十个参数为 10 !
第十个参数为 34 !
第十一个参数为 73 !
参数总数有 11 个!
作为一个字符串输出所有参数 1 2 3 4 5 6 7 8 9 34 73 !
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
# 函数参数
在 Shell 中,调用函数时可以向其传递参数。在函数体内部,通过 $n
的形式来获取参数的值,例如,$1
表示第一个参数,$2
表示第二个参数...
带参数的函数示例:
#!/bin/bash
funWithParam(){
echo "The first parameter is $1 !"
echo "The second parameter is $2 !"
echo "The tenth parameter is $10 !"
echo "The tenth parameter is ${10} !"
echo "The eleventh parameter is ${11} !"
echo "The total number of parameters is $# !"
echo "Outputs all parameters as a string $* !"
}
funWithParam 1 2 3 4 5 6 7 8 9 34 73
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
输出结果:
The first parameter is 1 !
The second parameter is 2 !
The tenth parameter is 10 !
The tenth parameter is 34 !
The eleventh parameter is 73 !
The total number of parameters is 11 !
Outputs all parameters as a string 1 2 3 4 5 6 7 8 9 34 73 !
1
2
3
4
5
6
7
2
3
4
5
6
7
注意:
$10
不能获取第十个参数,获取第十个参数需要 ${10}
。当 n>=10 时,需要使用 ${n}
来获取参数。