Bash Scripting - Arrays
In bash, what does the expression
${#mylist[@]} evaluate to if mylist is an array?${#mylist[@]} evaluate to if mylist is an array?${#array[@]} returns the count of elements in the array.mylistmylist is an array, ${#mylist[@]} gives the number of elements.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions