StackOverflow 文档 Bash 教程 数组 数组长度 数组长度 Created: November-22, 2018 ${#array[@]} 给出了数组 ${array[@]} 的长度: array=('first element' 'second element' 'third element') echo "${#array[@]}" # gives out a length of 3 这也适用于单个元素中的字符串: echo "${#array[0]}" # gives out the lenght of the string at element 0: 13 数组迭代数组修改