Re: [LA-discussions] concaténation de variables bash |
[ Thread Index | Date Index | More linuxarverne.org/discussions Archives ]
Daniel Cartron a écrit :
Le vendredi 28 novembre 2008, Pierre-Olivier Bonnet a écrit :Dans la boucle un CH=`echo $CHOIX | cut -fi -d\ ` Puis le case sur $CHJe pense saisir le concept mais j'ai pas suivi la démo... Si tu pouvais en rajouter dans le genre j'ai besoin d'explications :-)
moi je ferais comme ça : choix='"test" "bob" "truc"' for i in $choix; do i=`echo $i|sed 's/\"//g'` case $i in test) echo c est test ! ;; bob) echo c est bob ! ;; esac done A+ Mathieu --- Liste de discussions de LinuxArverne http://wiki.linuxarverne.org/listes_de_diffusion
Mail converted by MHonArc 2.6.19+ | http://listengine.tuxfamily.org/ |