Answers for "bash - how to get the length of an array"

4

get length of array bash

## define it
distro=("redhat" "debian" "gentoo")
 
## get length of $distro array
len=${#distro[@]}
 
## Use bash for loop 
for (( i=0; i<$len; i++ )); do echo "${distro[$i]}" ; done
Posted by: Guest on June-27-2020
0

array length bash

echo "${#your_array[@]}"
Posted by: Guest on November-29-2021

Code answers related to "bash - how to get the length of an array"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language