美文网首页
shell $(command) 用法

shell $(command) 用法

作者: 滴滴时光 | 来源:发表于2018-10-09 18:51 被阅读12次

    $(command)`command`作用是一样的

    path=`pwd`
    path=$(pwd)
    
    # `` 更为通用
    # $() 更易读
    m1=`command_a  `command_b``
    m2=$(command_a $(command_b)) 
    

    相关文章

      网友评论

          本文标题:shell $(command) 用法

          本文链接:https://www.haomeiwen.com/subject/cifpoftx.html