shell脚本如何判断一个变量是否为空

如下代码展示了如何判定一个变量是否为空 #!/bin/sh #filename: test.sh para1= if [ ! -n $para1 ]; then echo "IS NULL" else echo "NO……