shell

作者: 突破格局 | 来源:发表于2021-02-19 18:32 被阅读0次

    grep -v ^# 去掉注释
    awk -F '=' '{print $2}' 以=分割字符串,取数组中第二列
    sed 's/./-/g' 将.替换为-

    check() {
    b=1
    echo "result"{b}
    }
    res=(check) arr=(res)
    a={arr[0]} b={arr[1]}

    以,号分割字符串
    其中
    res="/export,1"
    tmp=echo $res| tr ',' ' '
    arr=(tmp) d={arr[0]}
    t=${arr[1]}

    相关文章

      网友评论

          本文标题:shell

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