#!/bin/bash
word='hello,world'
str1="he said:"$word"!"
str2="he said:$word"
str3='he said:'$word'!'
echo $str1 $str2 $str3