Horje
how to loop through every value in array 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
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




Shell

Related
ubuntu cmd firewall give access to port Code Example ubuntu cmd firewall give access to port Code Example
bash for loop string array Code Example bash for loop string array Code Example
gitignore file without extension Code Example gitignore file without extension Code Example
permission denied /dev/kvm Code Example permission denied /dev/kvm Code Example
git checkout single file Code Example git checkout single file Code Example

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