IF ELSE


程式格式

基本方式

if [ .... ]
then
  ......
fi

or

if [ .... ] ; then
  ......
fi

雙重判斷式

if [ .... ]
then
  .....
else
  .....
fi

多重判斷式

if [ ..... ]; then
  ......
elif [ ..... ]; then
  ......
else
  ......
fi

判斷式

程式寫法 程式羅輯
-eq ==
-ne !=
-gt >
-lt <
-ge >=
-le <=

results matching ""

    No results matching ""