函数就是把一段代码整理到了一个小单元中,并给这个小单元起一个名字,当用到这段代码时直接调用这个小单元的名字即可。
#!/bin/bash
#脚本名字为fun1.sh
function inp(){
echo "The first par is $1"
echo "The second par is $2"
echo "The third par is $3"
echo "the scritp name is $0"
echo "the number of par is $#"
}
inp $1 $2 $3 #执行inp函数 inp($1,$2,$3)
[root@hao-01 ~]# sh fun1.sh 1 #执行fun1.sh脚本,后面跟函数参数
#!/bin/bash
#函数名称为fun2.sh, 加法函数
sum() {
s=$[$1+$2]
echo $s
}
sum 1 10 #执行函数 sum(1,2)
[root@hao-01 ~]# sh -x fun2.sh #执行fun2.sh脚本
#!/bin/bash
#函数名称fun3.sh,输入网卡名字,显示网卡ip:
ip()
{
ifconfig |grep -A1 "$1: "|awk '/inet/ {print $2}'
}
read -p "please input the eth name: " ech
ip $eth
[root@hao-01 ~]# sh fun3.sh # please input the eth name: ens33