How can I get unique values from an array in Bash?

前端 未结 14 1161
-上瘾入骨i
-上瘾入骨i 2020-11-27 12:50

I\'ve got almost the same question as here.

I have an array which contains aa ab aa ac aa ad, etc. Now I want to select all unique elements from this ar

14条回答
  •  孤独总比滥情好
    2020-11-27 13:10

    A bit hacky, but this should do it:

    echo "${ids[@]}" | tr ' ' '\n' | sort -u | tr '\n' ' '
    

    To save the sorted unique results back into an array, do Array assignment:

    sorted_unique_ids=($(echo "${ids[@]}" | tr ' ' '\n' | sort -u | tr '\n' ' '))
    

    If your shell supports herestrings (bash should), you can spare an echo process by altering it to:

    tr ' ' '\n' <<< "${ids[@]}" | sort -u | tr '\n' ' '
    

    Input:

    ids=(aa ab aa ac aa ad)
    

    Output:

    aa ab ac ad
    

    Explanation:

    • "${ids[@]}" - Syntax for working with shell arrays, whether used as part of echo or a herestring. The @ part means "all elements in the array"
    • tr ' ' '\n' - Convert all spaces to newlines. Because your array is seen by shell as elements on a single line, separated by spaces; and because sort expects input to be on separate lines.
    • sort -u - sort and retain only unique elements
    • tr '\n' ' ' - convert the newlines we added in earlier back to spaces.
    • $(...) - Command Substitution
    • Aside: tr ' ' '\n' <<< "${ids[@]}" is a more efficient way of doing: echo "${ids[@]}" | tr ' ' '\n'

提交回复
热议问题