回答:
特別なことはありません。宣言に追加するだけです。
例えば:
[Zypher@host01 monitor]$ stringOne="foo"
[Zypher@host01 monitor]$ stringTwo="anythingButBar"
[Zypher@host01 monitor]$ stringThree=$stringOne$stringTwo
[Zypher@host01 monitor]$ echo $stringThree
fooanythingButBar
それらの間にリテラルの単語「and」が必要な場合:
[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。