Ответы:
Ничего особенного, вам просто нужно добавить их в вашу декларацию.
например:
[Zypher@host01 monitor]$ stringOne="foo"
[Zypher@host01 monitor]$ stringTwo="anythingButBar"
[Zypher@host01 monitor]$ stringThree=$stringOne$stringTwo
[Zypher@host01 monitor]$ echo $stringThree
fooanythingButBar
если вы хотите буквальное слово «и» между ними:
[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}
если вы не хотите пробелов
stringThree=$stringOne" and "$stringTwo
.
$ stringOne="foo"
, например. Кроме того, подсказка не должна появляться в строке вывода (строки после эха). В противном случае +1.