concat string in a shell script

This question already has an answer here:

  • How to concatenate string variables in Bash 27 answers

  • 这个怎么样:

    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/29122.html

    上一篇: 在Bash中连接变量

    下一篇: 在shell脚本中连接字符串