summaryrefslogtreecommitdiff
path: root/Bash Arrays.md
blob: db222eec374e0ef3827d47210ab47f7b4a02f534 (plain)
1
2
Length of an array: `${#arr[@]}` -> `$#` = number of args , `${#str}` length of string str, `${#arr[@]` length of array, `${#arr}` length of first entry in array ie length of str for example.