Qualquer elemento de um array pode ser referenciado usando a seguinte sintaxe:
${ArrayName[subscript]}
Você pode descobrir facilmente o tamanho da matriz do shell bash usando a seguinte sintaxe:
${#ArrayName[@]}
Altere seu código na parte inferior para o seguinte:
echo "${#live[@]} Processes are running."
echo "List of Processes live ${live[@]}"
echo "${#dead[@]} Processes are dead."
echo "List of Processes dead ${dead[@]}"
E obtenha um resultado como este:
~$ bash 2.sh
Process bin is running.
Process games is running.
Process include is running.
Process lib is running.
Process local is running.
Process locale is running.
Process sbin is running.
Process share is running.
Process src is running.
9 Processes are running.
List of Processes live bin games include lib local locale sbin share src
0 Processes are dead.
List of Processes dead