Answers for "how to loop through every value in array bash"

17

loop from array bash

#!/bin/bash
# declare an array called array and define 3 values
array=( one two three )
for i in "${array[@]}"
do
	echo $i
done
Posted by: Guest on April-13-2020
1

how to loop through every value in array 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
Posted by: Guest on October-22-2020

Code answers related to "how to loop through every value in array bash"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language