问题描述
您不必调用外部basename
命令。相反,您可以使用以下命令:
$ s=/the/path/foo.txt
$ echo "${s##*/}"
foo.txt
$ s=${s##*/}
$ echo "${s%.txt}"
foo
$ echo "${s%.*}"
foo
请注意,此解决方案应适用于所有最近( 2004 年后 )符合 POSIX 的外壳(例如bash
、dash
、ksh
等)。
更多关于 bash 字符串操作: http://tldp.org/LDP/LG/issue18/bash.html
解决方法
给定如下文件名:
/the/path/foo.txt
bar.txt
我希望得到:
foo
bar
为什么这不起作用?
#!/bin/bash
fullfile=$1
fname=$(basename $fullfile)
fbname=${fname%.*}
echo $fbname
正确的方法是什么?