Skip to content

How to loop over an array in Bash

Find out how to loop over an array in Bash

I had an array of 3 strings:

list=( "first" "second" "third" )

and I wanted to loop over them in a bash shell script.

Here’s how I did it:

for i in "${list[@]}"
do
   : 
   echo $i
done

Here is how can I help you: