Copyright 2025

The Valley of Code

A Flavio Copes project

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

Join my AI Workshop !

The Web Development BOOTCAMP cohort starts in February 2026