Réponses:
Rien de spécial, il vous suffit de les ajouter à votre déclaration.
par exemple:
[Zypher@host01 monitor]$ stringOne="foo"
[Zypher@host01 monitor]$ stringTwo="anythingButBar"
[Zypher@host01 monitor]$ stringThree=$stringOne$stringTwo
[Zypher@host01 monitor]$ echo $stringThree
fooanythingButBar
si vous voulez le mot littéral «et» entre eux:
[Zypher@host01 monitor]$ stringOne="foo"
[Zypher@host01 monitor]$ stringTwo="anythingButBar"
[Zypher@host01 monitor]$ stringThree="$stringOne and $stringTwo"
[Zypher@host01 monitor]$ echo $stringThree
foo and anythingButBar
echo ${stringOne}and${stringTwo}
si vous ne voulez pas d'espace
stringThree=$stringOne" and "$stringTwo
.
$ stringOne="foo"
, par exemple. De plus, l'invite ne doit pas apparaître sur une ligne de sortie (les lignes après les échos). Sinon +1.