Skip to content

Instantly share code, notes, and snippets.

@sankars
Created April 4, 2014 17:49
Show Gist options
  • Select an option

  • Save sankars/9979559 to your computer and use it in GitHub Desktop.

Select an option

Save sankars/9979559 to your computer and use it in GitHub Desktop.
## 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