Yanıtlar:
Özel bir şey yok, sadece beyanınıza eklemelisiniz.
Örneğin:
[Zypher@host01 monitor]$ stringOne="foo"
[Zypher@host01 monitor]$ stringTwo="anythingButBar"
[Zypher@host01 monitor]$ stringThree=$stringOne$stringTwo
[Zypher@host01 monitor]$ echo $stringThree
fooanythingButBar
kelimenin tam anlamıyla 've' kelimesini görmek istiyorsanız:
[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}
boşluk istemiyorsanız
stringThree=$stringOne" and "$stringTwo
.
$ stringOne="foo"
Örneğin gibi bir şey . Ayrıca, bilgi istemi bir çıktı satırında görünmemelidir (echos'tan sonraki satırlar). Aksi halde +1.