Created
March 3, 2015 01:49
-
-
Save qinshulei/ad9928eb5b5f0255fc41 to your computer and use it in GitHub Desktop.
bash for example,iterate a array
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