Bash Scripting - Arrays
Find the mistake in this bash snippet:
list=(red green blue)
count=${#list}
echo $countlist=(red green blue)
count=${#list}
echo $count${#list[@]} to get the count of elements.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions