以下时一个使用 -z string 表达式的示例,判断VAR字符串变量是否为0。 #!/bin/bash VAR='' if [[ -z $VAR ]]; then echo "String is empty." fi
確定! 回上一頁