我写了以下行来获取字符串的最后一个字符:
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
这是为什么你需要引用你的变量的原因之一:
原文链接:https://www.f2er.com/bash/391543.htmlecho "${str:$i:1}"
否则,bash展开变量,在这种情况下,在打印输出之前执行globbing。它也最好引用参数的脚本(如果你有一个匹配的文件名):
sh lash_ch.sh 'abcde*'
另请参见bash reference manual中扩展的顺序。在文件扩展之前扩展变量。