जवाबों:
कुछ खास नहीं, बस आपको उन्हें अपनी घोषणा में जोड़ना होगा।
उदाहरण के लिए:
[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।