How do I pass an array to a function, and why wouldn't this work? The solutions in other questions didn't work for me. For the record, I don't need to copy the array so I don't mind passing a reference. All I want to do is loop over it.
$ ar=(a b c)
$ function test() { echo ${1[@]}; }
$ echo ${ar[@]}
a b c
$ test $ar
bash: ${1[@]}: bad substitution
$ test ${ar[@]}
bash: ${1[@]}: bad substitution
I realize this question is almost two years old, but it helped me towards figuring out the actual answer to the original question, which none of the above answers actually do (@ata and @l0b0's answers). The question was "How do I pass an array to a bash function?", while @ata was close to getting it right, his method does not end up with an actual array to use within the function itself. One minor addition is needed.
So, assuming we had
anArray=(a b c d)
somewhere before calling functiondo_something_with_array()
, this is how we would define the function:Now
Would correctly output:
If there is a possibility some element(s) of your array may contain spaces, you should set
IFS
to a value other than SPACE, then back after you've copied the function's array arg(s) into local arrays. For example, using the above:ar
is not the first parameter to test - It is all the parameters. You'll have toecho "$@"
in your function.