第9章 函数
9.1 系统函数
1.basename基本语法
basename [string/ pathname] [suffix](功能描述:basename命令会删掉所有的前缀包括最后一个(‘/’)字符,然后将字符串显示出来
选项:
suffix为后缀,如果suffix被指定了,basename会将pathname或string中的suffix去掉
2.案例实操
(1)截取该/root/test.txt路径的文件名称
[root@localhost ~]# touch test.txt
[root@localhost ~]# basename /root/test.txt .txt
test
3.dirname基本语法
dirname 文件绝对路径(功能描述:从给定的包含绝对路径的文件名中去除文件名(非目录部分),然后返回剩下的路径(目录部分))
4.案例实操
(1)获取test.txt文件的路径
[root@localhost ~]# dirname /root/test.txt
/root
9.2 自定义函数
1.基本语法
[ function ] funname[()]
{
Action;
[return int;]
}
funname
2.经验技巧
(1)必须在调用函数之前,先声明函数,Shell脚本是逐行运行。不会像其他语言一样先编译
(2)函数返回值,只能通过$?系统变量获得,可以显示加:return返回,如果不加,将以最后一条命令运行结果,作为返回值。return后跟数值n(0-255)
3.案例实操
(1)计算输入的两个参数的和
[root@localhost ~]# touch fun.sh
[root@localhost ~]# 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;
[root@localhost ~]# chmod a+x fun.sh
[root@localhost ~]# ./fun.sh
Please input the number1:3
Please input the number2:4
7