shell编程之自定义函数

1.基本语法

[ function ] funname[()]

{

Action;

[return int;]

}

funname

2.经验技巧

(1)必须在调用函数地方之前,先声明函数,shell脚本是逐行运行。不会像其它语言一样先编译。

(2)函数返回值,只能通过$?系统变量获得,可以显示加:return返回,如果不加,将以最后一条命令运行结果,作为返回值。return后跟数值n(0-255)

3.示例

[root@eshop-detail03 shell]# vi fun.sh
#!/bin/bash
function sum()
{
    s=0
    s=$[ $1 + $2 ]
    echo "$s"
}

read -p "Please input the number1: " n1;
read -p "Please input the number2: " n2;
sum $n1 $n2;
~
~
"fun.sh" [New] 11L, 168C written
[root@eshop-detail03 shell]# chmod 777 fun.sh
[root@eshop-detail03 shell]# ./fun.sh
Please input the number1: 8
Please input the number2: 10
18
[root@eshop-detail03 shell]# ./fun.sh
Please input the number1: 258
Please input the number2: 2
260

你可能感兴趣的:(Linux)