Shell腳本中判斷輸入變量或者參數是否爲空的方法

這篇文章主要介紹了Shell腳本中判斷輸入變量或者參數是否爲空的方法,本文總結了5種方法,並分別給出了代碼實例,須要的朋友能夠參考下bash 1.判斷變量app 複製代碼代碼以下: read -p "input a word :" word if  [ ! -n "$word" ] ;then     echo "you have not input a word!" else     echo
相關文章
相關標籤/搜索