在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脚本中,变量的赋值语句等号两边不能有空格,否则会报错。