Відповіді:
Нічого особливого, потрібно просто додати їх у свою декларацію.
наприклад:
[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.