配列変数の長さを求める

書式

${#配列変数名[@]}

説明

配列変数の長さを求めるには${#配列変数名[@]}とします。

サンプルコード

#!/bin/bash
a[0]="Sample"
a[1]="Shell"
a[2]="Script"
echo ${#a[@]}