復数の変数を連結するには下のコード1のように単に続けて記述すればよいのですが
#!/bin/sh #code1 str1 = "Shell script" str2 = "is intersting!" str = $str1$str2 echo $str -->実行結果 Shell script is interesting!
変数と文字列の場合は変数を{} でくくります。code2のような感じです。
#!/bin/sh #code1 str1 = "Shell script" str = "${str1} is intersting!!" echo $str -->実行結果 Shell script is interesting!!