Skip to content

Instantly share code, notes, and snippets.

@programaker
Created April 28, 2010 21:01
Show Gist options
  • Save programaker/382702 to your computer and use it in GitHub Desktop.
Save programaker/382702 to your computer and use it in GitHub Desktop.
Iterate through array in shell script
array=( bla ble bli blo blu )
for item in ${array[@]}; do
echo $item
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment