Horje
loop over array of strings bash Code Example
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
bash for loop string 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
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
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




Shell

Related
Brave on Debian Code Example Brave on Debian Code Example
creating copy of a branch Code Example creating copy of a branch Code Example
install brave on linux Code Example install brave on linux Code Example
copy local docker image to kind cluster Code Example copy local docker image to kind cluster Code Example
bz2 unzip Code Example bz2 unzip Code Example

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