Skip to content

Instantly share code, notes, and snippets.

@qinshulei
Created March 3, 2015 01:49
Show Gist options
  • Select an option

  • Save qinshulei/ad9928eb5b5f0255fc41 to your computer and use it in GitHub Desktop.

Select an option

Save qinshulei/ad9928eb5b5f0255fc41 to your computer and use it in GitHub Desktop.
bash for example,iterate a array
## declare an array variable
declare -a arr=("element1" "element2" "element3")
## now loop through the above array
for i in "${arr[@]}"; do
echo "$i"
# or do whatever with individual element of the array
done
# You can access them using echo "${arr[0]}", "${arr[1]}" also
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment