উত্তর:
বিশেষ কিছু নয়, আপনার কেবলমাত্র তাদের ঘোষণায় এগুলি যুক্ত করা দরকার।
উদাহরণ স্বরূপ:
[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।