Jawaban:
Tidak ada yang istimewa, Anda hanya perlu menambahkannya ke deklarasi Anda.
sebagai contoh:
[Zypher@host01 monitor]$ stringOne="foo"
[Zypher@host01 monitor]$ stringTwo="anythingButBar"
[Zypher@host01 monitor]$ stringThree=$stringOne$stringTwo
[Zypher@host01 monitor]$ echo $stringThree
fooanythingButBar
jika Anda ingin kata literal 'dan' di antara mereka:
[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}
jika Anda tidak ingin spasi
stringThree=$stringOne" and "$stringTwo
.
$ stringOne="foo"
, misalnya. Selain itu, prompt tidak akan muncul di jalur keluaran (baris setelah gema). Kalau tidak +1.