Câu trả lời:
Không có gì đặc biệt, bạn chỉ cần thêm chúng vào khai báo của bạn.
ví dụ:
[Zypher@host01 monitor]$ stringOne="foo"
[Zypher@host01 monitor]$ stringTwo="anythingButBar"
[Zypher@host01 monitor]$ stringThree=$stringOne$stringTwo
[Zypher@host01 monitor]$ echo $stringThree
fooanythingButBar
nếu bạn muốn từ theo nghĩa đen 'và' giữa chúng:
[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}
nếu bạn không muốn có không gian
stringThree=$stringOne" and "$stringTwo
.
$ stringOne="foo"
, ví dụ. Ngoài ra, lời nhắc không nên xuất hiện trên một dòng đầu ra (các dòng sau tiếng vang). Nếu không +1.