Horje
bash array forloop Code Example
bash loop array
## 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
bash array forloop
#!/bin/bash
## declare an array variable
declare -a array=("one" "two" "three")

# get length of an array
arraylength=${#array[@]}

# use for loop to read all values and indexes
for (( i=0; i<${arraylength}; i++ ));
do
  echo "index: $i, value: ${array[$i]}"
done
array and for loop bash
myArray=('Apple' 'Banana' 'Orange')
for i in "${myArray[@]}";
do
  echo $i
done
Source: devhints.io




Shell

Related
git add identity Code Example git add identity Code Example
ubuntu software not showing apps 20.04 Code Example ubuntu software not showing apps 20.04 Code Example
redis-server specify port Code Example redis-server specify port Code Example
batch for loop Code Example batch for loop Code Example
install docker debian 10 Code Example install docker debian 10 Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8