在shell腳本中,可以使用以下方法實現字符串拼接變量:
name="John"
greeting="Hello, $name!"
echo $greeting
輸出結果為:Hello, John!
name="John"
greeting='Hello, $name!'
echo $greeting
輸出結果為:Hello, $name!
name="John"
greeting="Hello, ${name}!"
echo $greeting
輸出結果為:Hello, John!
name="John"
greeting="Hello, "
message=$greeting$name"!"
echo $message
輸出結果為:Hello, John!
注意:在shell腳本中,變量的賦值語句等號兩邊不能有空格,否則會報錯。