#1 Le 02/10/2008, à 01:53
- JPlaroche
[resolu]concatenation variable dans script bash
i=0
while [ "$i" -lt 10 ];
do
$toto = $origDirectory : ${directoryList[$i]}
echo "$toto"
let "i = $i + 1"
done
bonjour je cherche comment concatener deux variable dans une procedure bash
merci
i=0
while [ "$i" -lt "$len" ];
do
toto=$origDirectory
echo "$toto"
toto = $toto + ${directoryList[$i]}
echo "$toto"
let "i = $i + 1"
done
ca aussi c'est faux
Dernière modification par JPlaroche (Le 04/10/2008, à 04:29)
depuis 2004 avec Ubuntu
depuis 1976 informaticien Mon site plein d'information pour les programmeurs http://www.ombrebleu.com
Hors ligne
#2 Le 02/10/2008, à 11:51
- lautux
Re : [resolu]concatenation variable dans script bash
a='A'
b='B'
echo "$a$b"
A+
Hors ligne