大数据之Shell:函数:自定义函数
Posted 浊酒南街
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了大数据之Shell:函数:自定义函数相关的知识,希望对你有一定的参考价值。
1:基本语法
[ function ] funname[()]
{
Action;
[return int;]
}
funname
2:经验技巧
(1)必须在调用函数地方之前,先声明函数,shell脚本是逐行运行。不会像其它语言一样先编译。
(2)函数返回值,只能通过$?系统变量获得,可以显示加:return返回,如果不加,将以最后一条命令运行结果,作为返回值。return后跟数值n(0-255)
3:案例实操
(1)计算两个输入参数的和
[jinghang@hadoop101 datas]$ touch fun.sh
[jinghang@hadoop101 datas]$ vim 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;
[jinghang@hadoop101 datas]$ chmod 777 fun.sh
[jinghang@hadoop101 datas]$ ./fun.sh
Please input the number1: 2
Please input the number2: 5
7
以上是关于大数据之Shell:函数:自定义函数的主要内容,如果未能解决你的问题,请参考以下文章