最佳答案
为了得到字符串的最后一个字符,我编写了以下代码行:
str=$1
i=$((${#str}-1))
echo ${str:$i:1}
它适用于 abcd/
:
$ bash last_ch.sh abcd/
/
它 不适用于 abcd*
:
$ bash last_ch.sh abcd*
array.sh assign.sh date.sh dict.sh full_path.sh last_ch.sh
是 列出当前文件夹中的文件。