美文网首页
shell脚本实现逻辑关系与、或、非

shell脚本实现逻辑关系与、或、非

作者: VincentHK | 来源:发表于2018-03-16 18:00 被阅读0次

    1,与 "-a" : a是and

    if [ 条件1 -a 条件2 ] ;then

    shell order

    shell order

    ...

    fi

    2, 或 "-o" : o 是or

    if [ 条件1 -o 条件2 ] ;then

    shell order

    shell order

    ...

    fi

    3,非 "!" : !是not

    if [ ! 条件 ] ;then

    shell order

    shell order

    ...

    fi

    相关文章

      网友评论

          本文标题:shell脚本实现逻辑关系与、或、非

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