Shell: variable pour construire une autre var
Résolu/Fermé
bijnok
Messages postés
62
Date d'inscription
lundi 2 mars 2009
Statut
Membre
Dernière intervention
6 octobre 2015
-
19 mai 2010 à 11:04
bijnok Messages postés 62 Date d'inscription lundi 2 mars 2009 Statut Membre Dernière intervention 6 octobre 2015 - 19 mai 2010 à 12:12
bijnok Messages postés 62 Date d'inscription lundi 2 mars 2009 Statut Membre Dernière intervention 6 octobre 2015 - 19 mai 2010 à 12:12
A voir également:
- Shell: variable pour construire une autre var
- Classic shell windows 11 - Télécharger - Personnalisation
- Shell startup windows 10 - Guide
- Efi shell version 2.31 - Forum Programmation
- Ssh secure shell download - Télécharger - Divers Web & Internet
- Startup.nsh shell ✓ - Forum Windows 10
2 réponses
jipicy
Messages postés
40842
Date d'inscription
jeudi 28 août 2003
Statut
Modérateur
Dernière intervention
10 août 2020
4 897
19 mai 2010 à 11:13
19 mai 2010 à 11:13
Salut,
Voir ce vieux thread
eval cat table${table}
Voir ce vieux thread
bijnok
Messages postés
62
Date d'inscription
lundi 2 mars 2009
Statut
Membre
Dernière intervention
6 octobre 2015
12
Modifié par bijnok le 19/05/2010 à 11:32
Modifié par bijnok le 19/05/2010 à 11:32
J'avais déjà essayé avec eval mais cela ne fonctionne pas, la variable tableTABLE1 n'est pas interprétée.
Merci quand même ^^
------------ EDIT ---------------
J'ai trouvé, je n'avais pas parcouru entièrement les posts de
https://forums.commentcamarche.net/forum/affich-1651850-script-bash-variable-d-environnement#7
Désolé j'ai pas trouvé le BBCode pour insérer proprement l'url.
Merci jipicy
[root]# eval cat table${table} cat: tableTABLE1: No such file or directory
Merci quand même ^^
------------ EDIT ---------------
J'ai trouvé, je n'avais pas parcouru entièrement les posts de
https://forums.commentcamarche.net/forum/affich-1651850-script-bash-variable-d-environnement#7
Désolé j'ai pas trouvé le BBCode pour insérer proprement l'url.
[root]# eval echo "$""table$table" ./mysql/TABLE1.sql
Merci jipicy
jipicy
Messages postés
40842
Date d'inscription
jeudi 28 août 2003
Statut
Modérateur
Dernière intervention
10 août 2020
4 897
19 mai 2010 à 12:03
19 mai 2010 à 12:03
Essaye :
cat $(eval echo \$table$table)
bijnok
Messages postés
62
Date d'inscription
lundi 2 mars 2009
Statut
Membre
Dernière intervention
6 octobre 2015
12
19 mai 2010 à 12:12
19 mai 2010 à 12:12
Solutions qui fonctionnent:
cat $(eval echo \$table$table)
cat $(eval echo "$""table$table")
Merci pour tout
cat $(eval echo \$table$table)
cat $(eval echo "$""table$table")
Merci pour tout