Skip to content
FLAVIO COPES
flaviocopes.com
2026

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
~~~

Related posts about cli: