Created
April 4, 2014 17:49
-
-
Save sankars/9979559 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## 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