Horje
Loop through an array of strings in Bash Code Example
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
powershell copy-item specify credentials Code Example powershell copy-item specify credentials Code Example
changing folder permission in linux Code Example changing folder permission in linux Code Example
feature branch naming convention git Code Example feature branch naming convention git Code Example
fetching a forked branch Code Example fetching a forked branch Code Example
removing letstencrypt from domain Code Example removing letstencrypt from domain Code Example

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