-
shell编程和其他编程一样,有系统函数,也可以自定义函数。
系统函数
-
basename 获取文件名
去除文件完整路径的多级路径(和后缀名),返回文件名
基本语法: basename 文件的完整路径[文件后缀]
[root@xq100 shellCode]# basename /home/shellCode/a.txt a.txt
-
dirname 返回完整路径最前面部分
[root@xq100 shellCode]# dirname /home/shellCode/a.txt /home/shellCode
自定义函数
#!/bin/bash function getSum(){ SUM=$[$n1+$n2] echo "两个数字之和为:$SUM" } read -p "请输入第一个数字:" n1 read -p "请输入第二个数字:" n2 getSum $n1 $n2
3.11 Shell编程中的函数
最新推荐文章于 2024-11-11 22:04:04 发布