Get array item by index
How to get an array item by index in shell scripting
array=("first" "second" "third")
echo First item = ${array[1]}
How to get an array item by index in shell scripting
array=("first" "second" "third")
echo First item = ${array[1]}