bash 配列があり、 index から始まる配列要素を印刷したいと考えていますk
。
次の戦略ではうまくいきませんでした。
printf "%s\n" "${ar[$j:]}"
答え1
構文は${ar[@]:j}
1です。Parameter Expansion
のセクションからman bash
:
${parameter:offset:length}
.
.
.
If parameter is an indexed array name subscripted by @ or *, the
result is the length members of the array beginning with ${pa‐
rameter[offset]}. A negative offset is taken relative to one
greater than the maximum index of the specified array. It is an
expansion error if length evaluates to a number less than zero.
そう考えると
$ ar=("1" "2 3" "4" "5 6" "7 8" "9")
次に(bash 配列のインデックスは 0 ベースであることを覚えておいてください):
$ j=3; printf '%s\n' "${ar[@]:j}"
5 6
7 8
9
あるいは、C スタイルの for ループを使用します。
for ((i=k;i<${#ar[@]};i++)); do
printf '%s\n' "${ar[i]}"
done
- または
${ar[@]:$j}
、2番目$
はオプションです。インデックスは数値コンテキストで評価されるため、((...))