在shell脚本中连接字符串
这个问题在这里已经有了答案:
这个怎么样:
var="${var}string"
它取决于shell,但是因为问题被标记为bash:
var='my'
var=$var'string'
没有。出于各种原因。
# most sh-compatible shells
var="my"
var="$var string"
# advanced shells
var="my"
var+=" string"
链接地址: http://www.djcxy.com/p/29121.html
上一篇: concat string in a shell script
下一篇: Why is whitespace sometimes needed around metacharacters?