Get the index of a value in a Bash array

后端 未结 15 641
说谎
说谎 2021-01-30 03:41

I have something in bash like

myArray=(\'red\' \'orange\' \'green\')

And I would like to do something like

echo ${         


        
15条回答
  •  甜味超标
    2021-01-30 04:38

    I like that solution:

    let "n=(`echo ${myArray[@]} | tr -s " " "\n" | grep -n "green" | cut -d":" -f 1`)-1"
    

    The variable n will contain the result!

提交回复
热议问题