shell 中的條件判斷 「而且」 「或者」

1.而且 條件 c1而且條件c2web 方式一: -a: andshell if [ c1 -a c2 ]; then … fi 方式二:svg if [ c1 ] && [ c2 ]; then … fi 2.或者 條件 c1或者 條件c2spa 方式一:-o: orcode if [ c1 -o c2 ]; then … fi 方式二:xml if [ c1 ] || [ c2 ]; the
相關文章
相關標籤/搜索