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
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
网友评论