답변:
특별한 것은 없으며 선언에 추가하면됩니다.
예를 들면 다음과 같습니다.
[Zypher@host01 monitor]$ stringOne="foo"
[Zypher@host01 monitor]$ stringTwo="anythingButBar"
[Zypher@host01 monitor]$ stringThree=$stringOne$stringTwo
[Zypher@host01 monitor]$ echo $stringThree
fooanythingButBar
그들 사이에 문자 적 단어 'and'를 원한다면 :
[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입니다.