Bash Scripting - Arrays
Given the Bash array
arr=(a b c d e), what is the output of echo ${arr[@]:1:3}?arr=(a b c d e), what is the output of echo ${arr[@]:1:3}?(a b c d e). The slice starts at index 1 and takes 3 elements.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions