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 陣列迭代陣列修改