chauncey-garrett
12/1/2017 - 8:04 PM

loop over array

array=(one two three)
for number in ${(@)array}; do
  echo "$number"
done