Eu tenho um array bash e quero imprimir os elementos do array começando em index k
.
As coisas não funcionaram com a seguinte estratégia.
printf "%s\n" "${ar[$j:]}"
Responder1
A sintaxe é ${ar[@]:j}
1 . Da Parameter Expansion
seção de 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.
Tão dado
$ ar=("1" "2 3" "4" "5 6" "7 8" "9")
então (lembrando que a indexação do array bash é baseada em 0):
$ j=3; printf '%s\n' "${ar[@]:j}"
5 6
7 8
9
Como alternativa, use um loop for estilo C:
for ((i=k;i<${#ar[@]};i++)); do
printf '%s\n' "${ar[i]}"
done
- ou
${ar[@]:$j}
se preferir - o segundo$
é opcional, pois os índices são avaliados em um contexto numérico semelhante ao((...))