首先使用 --help 参数查看一下。basename命令参数很少,很容易掌握。
$ basename --help
用法示例:
$ basename /usr/bin/sort 输出"sort"。
$ basename ./include/stdio.h .h 输出"stdio"。
为basename指定一个路径,basename命令会删掉所有的前缀包括最后一个slash(‘/’)字符,然后将字符串显示出来。
basename命令格式:
basename [pathname] [suffix]
basename [string] [suffix]
suffix为后缀,如果suffix被指定了,basename会将pathname或string中的suffix去掉。
示例:
$ basename /tmp/test/file.txt
file.txt
$ basename /tmp/test/file.txt .txt
file
注意点:
1、如果像下面脚本中传递参数给basename,参数为空,basename会将参数左移
2、basename最多接受两个参数,如果设置的参数多于两个,会提示错误。
参考:http://en.wikipedia.org/wiki/Basename
以下是一个简单的脚本,测试了一下basename:
1. #!/bin/bash
2. # basename.sh
3. echo Testing basename
4. echo -------------
5. echo "basename \$1/\$2 .txt; suffix is .txt"
6. filename=`basename $1/$2 .txt`
7. echo $filename
8. echo -------------
9. echo "basename ab.c .c; suffix is .c"
10. basename ab.c .c
11. echo "basename ab b; suffix is b"
12. basename ab b
13. echo -------------
14. echo Testing \$\@ and \$\#
15. echo Output \$\@
16. echo $@
17. echo Output \$\#
18. echo $#
19. # end of basename.sh
脚本运行结果:
1. 没有参数传递的情况:
2.
3. $./basename.sh
4. Testing basename
5. -------------
6. basename $1/$2 .txt; suffix is .txt
7. /
8. -------------
9. basename ab.c .c; suffix is .c
10. ab
11. basename ab b; suffix is b
12. a
13. Testing $@ and $#
14. -------------
15. Output $@
16.
17. Output $#
18. 0
19.
20. 传递参数的情况:
21.
22. $ ./basename.sh 1.txt 2.txt
23. Testing basename
24. ------------
25. basename $1 .txt; suffix is .txt
26. 1
27. -------------
28. basename ab.c .c; suffix is .c
29. ab
30. basename ab b; suffix is b
31. a
32. Testing $@ and $#
33. -------------
34. Output $@
35. 1.txt 2.txt
36. Output $#
37. 2
额外补充:
1、$@
$@ 为传递的参数
2、$#
$# 为传递参数的数量
就像脚本执行后的结果:
1. Testing $@ and $#
2. -------------
3. Output $@
4. 1.txt 2.txt
5. Output $#
6. 2
3、$?
是shell变量,表示"最后一次执行命令"的退出状态,一般0表示成功,非0数值表示没有成功。
切记:
$?永远表示shell命令最后一次执行后的退出状态,当函数执行完毕后,如果又执行了其它命令,则$?不再表示函数执行后的状态,而表示其它命令的退出状态.
4、$!
代表pid,进程id
5、$$
代表ppid,父进程id
1. $ ./skype &
2. [2] 13549
3. $ echo $!
4. 13549
5. $ echo $$
6. 13032
7. $ ps -ef | grep skype
8. luck 13549 13032 4 19:19 pts/0 00:00:00 skype
http://monkeymusic.blog.163.com/blog/static/4797639200912533652666/
用途