Tengo una matriz bash y quiero imprimir los elementos de la matriz a partir del índice k
.
Las cosas no funcionaron con la siguiente estrategia.
printf "%s\n" "${ar[$j:]}"
Respuesta1
La sintaxis es ${ar[@]:j}
1 . De la Parameter Expansion
sección 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.
tan dado
$ ar=("1" "2 3" "4" "5 6" "7 8" "9")
entonces (recordando que la indexación de matrices bash está basada en 0):
$ j=3; printf '%s\n' "${ar[@]:j}"
5 6
7 8
9
Alternativamente, use un bucle for estilo C:
for ((i=k;i<${#ar[@]};i++)); do
printf '%s\n' "${ar[i]}"
done
- o
${ar[@]:$j}
si lo prefieres - el segundo$
es opcional, ya que los índices se evalúan en un contexto numérico similar a((...))