shell-023 shell中的函数

函数就是把一段代码整理到了一个小单元中,并给这个小单元起一个名字,当用到这段代码时直接调用这个小单元的名字即可。

#!/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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值