Je voudrais savoir si il est possible et si oui comment utiliser un tableau dans un fichier txt avec plusieurs scripts bash.
imaginons le fichier : tableaux.txt
Code : Tout sélectionner
tableau0=("nom" "prenom" "tel" "identifiant free" "api sms free")
tableau1=("nom" "prenom" "tel" "identifiant free" "api sms free")
tableau2=("nom" "prenom" "tel" "identifiant free" "api sms free")
tableau3=("nom" "prenom" "tel" "identifiant free" "api sms free")
Comment déclarer les tableaux
Ceci ne fonctionne pas
Code : Tout sélectionner
TABLEAU=$(head -n 1 $FICHIER_TXT)
declare -a TABLEAU
tableau=( $TABLEAU )
echo "Parcourir les éléments du tableau et les afficher :"
for i in ${!tableau[@]}
do
echo "dans le tableau $i : ${tableau[$i]}"
done