1. 程式人生 > >092-shell中的-n 引數的使用

092-shell中的-n 引數的使用

if [ ! -n "$myVar" ]; then 
echo "$myVar is empty" 
exit 0 
fi 

! 為不的意思 

-n 的意思是字串長度為0則為假, 不是0,有數值則為真 舉個例子,可以在指令碼前面新增myVar=1,你會發現if中為假,跳出迴圈exit 0