Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

Loop through an array of strings in Bash

## 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
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #Loop #array #strings #Bash
ADD COMMENT
Topic
Name
7+2 =