在shell中,可以使用以下方法來判斷變量是否為空:
if [ -z "$variable" ]; then
echo "變量為空"
else
echo "變量不為空"
fi
if [ "$variable" = "" ]; then
echo "變量為空"
else
echo "變量不為空"
fi
if [[ -z "$variable" ]]; then
echo "變量為空"
else
echo "變量不為空"
fi
以上三種方法都可以用來判斷變量是否為空,根據(jù)個(gè)人習(xí)慣可以選擇其中一種使用。