How to pass an array to a bash function

后端 未结 3 1850
后悔当初
后悔当初 2021-02-05 16:55

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

相关标签:
3条回答
  • 2021-02-05 17:08
    #!/bin/bash
    ar=( a b c )
    test() {
        local ref=$1[@]
        echo ${!ref}
    }
    
    test ar
    
    0 讨论(0)
  • 2021-02-05 17:20

    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 function do_something_with_array(), this is how we would define the function:

    function do_something_with_array {
        local tmp=$1[@]
        local arrArg=(${!tmp})
    
        echo ${#arrArg[*]}
        echo ${arrArg[3]}
    }
    

    Now

    do_something_with_array anArray
    

    Would correctly output:

    4
    d
    

    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:

    local tmp=$1[@]
    prevIFS=$IFS
    IFS=,
    local arrArg=(${!tmp})
    IFS=$prevIFS
    
    0 讨论(0)
  • 2021-02-05 17:24

    ar is not the first parameter to test - It is all the parameters. You'll have to echo "$@" in your function.

    0 讨论(0)
提交回复
热议问题