美文网首页
shell 竖线 “|”作用

shell 竖线 “|”作用

作者: 香菜那么好吃为什么不吃香菜 | 来源:发表于2021-09-16 11:44 被阅读0次

    【1】定义

    | 为管道符号,顾名思义,其作用为传输。

    【2】用法

    连接两个或者多个命令,并从左往右依次传输命令的执行结果,比如:command1 | command2 ,管道 | 的功能就是把第一个命令command1执行结果作为输入参数传递给command2。

    【3】示例

    strA="wangyibo"
    strB="yibo"
    result=$(echo $strA | grep "${strB}")
    if [[ "$result" != "" ]]
    then
        echo "include"
    else
        echo "exclude"
    fi
    

    相关文章

      网友评论

          本文标题:shell 竖线 “|”作用

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