Skip to content

Instantly share code, notes, and snippets.

@perguth
Last active September 8, 2015 15:00
Show Gist options
  • Select an option

  • Save perguth/4539a62b3d4d23dec15a to your computer and use it in GitHub Desktop.

Select an option

Save perguth/4539a62b3d4d23dec15a to your computer and use it in GitHub Desktop.
Iterate over an array in Bash.
ARRAY=(
hello
world
)
i=0
while [ $i -lt ${#ARRAY[@]} ]; do
echo ${ARRAY[i]}
((i++))
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment