Answers:
没什么特别的,你只需要将它们添加到你的声明中。
例如:
[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。