Answers for "bash loop over array of strings with spaces"

3

loop over array of strings 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
Posted by: Guest on December-31-2020

Code answers related to "bash loop over array of strings with spaces"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language