配列の名前が動的である(つまり、変数に格納されている)bash配列内の要素の数をカウントする組み込みのbashメソッドはありますかなし配列の完全なコピーを作成するかeval
?
Bashパラメータ置換を使用すると、次のことができます。
myArr=(A B C); echo ${#myArr[@]}
。NAME=myVar; echo ${!NAME}
NAME=myArr[1]; echo ${!NAME}
しかし、配列の名前が別の変数に格納されている場合、配列内の要素の数をどのように決定できますか? (これを、上記の2つのパラメーター置換のcombinationと考えるかもしれません。)例:
myArr=(A B C D)
NAME=myArr
# Get the number of elements in the array indirectly referenced by NAME.
count=${#$NAME[@]} # This syntax is invalid. What is the right way?
以下は、すべて失敗する複数の試行です。
# Setup for following attempts:
myArr=(A B C D)
NAME=myArr
EXPR1=$NAME[@] # i.e. EXPR1='myArr[@]'
EXPR2=#$NAME[@] # i.e. EXPR2='#myArr[@]'
# Failed attempts to get the lengh of the array indirectly:
1. count=${#$NAME[@]} # ERROR: bash: ...: bad substitution
2. count=${#!EXPR1} # ERROR: bash: !EXPR}: event not found
3. count=${#\!EXPR1} # ERROR: bash: ...: bad substitution
4. count=${!#EXPR1} # ERROR: bash: ...: bad substitution
5. count=${!EXPR2} # Returns NULL
私は上記の他の変種も試しましたが、(A)配列のコピーを作成するか、(B)eval
を使用して機能しないものはまだ見つかりません。
これを解決するにはいくつかの方法があり、おそらく最適ではありません(ただし、間違っている場合は修正してください)。
配列を別の(静的に名前が付けられた)変数に割り当て、その中の要素の数を取得します。
EXPR=$NAME[@]
arrCopy=( "${!EXPR}" )
count=${#arrCopy}
eval
を使用するEXPR="count=\${#$NAME[@]}" # i.e. 'count=${myArr[@]}'
eval $EXPR
# Now count is set to the length of the array
間接的に配列の長さを決定するためのbashの組み込みメソッド(つまり、パラメーター置換構文)はありますか?そうでない場合、これを行う最も効率的な方法は何ですか?上記のeval
メソッドだと思いますが、eval
にはセキュリティやパフォーマンスの問題がありますか?
インデックス評価でそのようなものを処理する必要があります。そして、それを配列にすれば、間接変数through間接変数のインデックスを指定できます。
a=(abc1 def2 ghi3 jkl4 mno5)
r=('a[c=${#a[@]}]' a\[i] a\[@])
for i in 0 1 2 3 4 5
do c=
printf "<%s>\n" "${!r-${!r[i<c?1:2]}}"
printf "\n\tindex is $i and count is $c\n\n"
done
<abc1>
index is 0 and count is 5
<def2>
index is 1 and count is 5
<ghi3>
index is 2 and count is 5
<jkl4>
index is 3 and count is 5
<mno5>
index is 4 and count is 5
<abc1>
<def2>
<ghi3>
<jkl4>
<mno5>
index is 5 and count is 5
bash
のインデックスは0ベースであるため、配列オブジェクトの総数は常に、最も高いセットのインデックスよりも1つ多くなるため、次のようになります。
c=
echo "${a[c=${#a[@]}]-this index is unset}" "$c"
this index is unset 5
...パラメータが指定されている場合は、デフォルトのWordに展開されます。
提供されていない場合:
c=
${!r}
echo "$c"
5
...害はありません。
ループで、$i
ndex変数を追跡し、少なくとも$c
ountと同じ大きさかどうかを確認します。小さい場合は$r
eference変数をa[i]
に展開します。これは有効なインデックスであるためですが、それ以上の場合は$r
efを$a
rray全体に展開します。
ここでは関数にあります:
ref_arr(){
local index=-1 count=
local ref=( "$1[ count= \${#$1[@]} ]"
"$1[ index ]" "$1[ @ ]"
) && printf "input array '%s' has '%d' members.\n" \
"$1" "${!ref-${count:?invalid array name: "'$1'"}}"
while [ "$((index+=1))" -lt "$count" ]
do printf "$1[$index] == '%s'\n" "${!ref[1]}"
done
}
some_array=(some "dumb
stuff" 12345\'67890 "" \
'$(kill my computer)')
ref_arr some_array
ref_arr '$(echo won'\''t work)'
input array 'some_array' has '5' members.
some_array[0] == 'some'
some_array[1] == 'dumb
stuff'
some_array[2] == '12345'67890'
some_array[3] == ''
some_array[4] == '$(kill my computer)'
bash: count: invalid array name: '$(echo won't work)'
bash 4.3の名前参照は天の恵みです。ただし、これは可能です。
$ myArr=(A B C D)
$ NAME=myArr
$ tmp="${NAME}[@]"
$ copy=( "${!tmp}" )
$ echo "${#copy[@]}"
4