首页 > 代码库 > shell 中 basename 的简单使用
shell 中 basename 的简单使用
在shell 脚本中$0 通常用于显示脚本的名称,在不使用basename 的时候会显示脚本的路径名称
例如
cat test5.sh #!/bin/bash # testing the $0 parameter echo the zero parameter is set to:$0
执行脚本
bash /root/shell/test5.sh
the zero parameter is set to:/root/shell/test5.sh ##显示了脚本的路径
添加basename 后
#!/bin/bash # testing the $0 parameter name=$(basename $0 ) echo the zero parameter is set to:$name
执行脚本
bash /root/shell/test5b.sh
the zero parameter is set to:test5b.sh ##直接显示脚本名称
简单实例,根据脚本的不同名称执行不同的功能,当脚本名称是addem,执行加法、是multem的时候执行乘法
脚本如下
#!/bin/bash #Testing a multi-function script name=$(basename $0) # if [ $name = "addem" ] then total=$[ $1 + $2 ] elif [ $name = "multem" ] then total=$[ $1 * $2 ] fi echo The calculated value is $total
cp test6.sh addem
cp test6.sh multem
执行addem 脚本
./addem 25 3
The calculated value is 28
执行multem 脚本
[root@VM_71_179_centos shell]# ./multem 3 5
The calculated value is 15
本文出自 “sdsca” 博客,请务必保留此出处http://sdsca.blog.51cto.com/10852974/1903822
shell 中 basename 的简单使用
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。