下面兩種寫法都可以用來判斷變數是否為空值 ================ function 1 ============== #!/bin/sh if [ ! -n "$foo" ]; then echo "IS NULL"
確定! 回上一頁