“Zugriff auf Array -Elemente Bash -Skript” Code-Antworten

Bash Access Array indirekt

#!/usr/bin/env bash

ARRAYNAME='FRUITS'
FRUITS=( APPLE BANANA ORANGE )

eval array=\( \${${ARRAYNAME}[@]} \)

for fruit in "${array[@]}"; do
  echo ${fruit}
done
Old Knight

Zugriff auf Array -Elemente Bash -Skript

#In case you want to access an element just use an index
$array[0]
$array[1]
.....
Antonio Roldan Andrade

Ähnliche Antworten wie “Zugriff auf Array -Elemente Bash -Skript”

Fragen ähnlich wie “Zugriff auf Array -Elemente Bash -Skript”

Weitere verwandte Antworten zu “Zugriff auf Array -Elemente Bash -Skript” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen