bash shell if 判断不为空
时间: 2023-10-13 21:19:01 浏览: 178
shell判断文件是否为空的代码
在 Bash Shell 中,可以使用 `-n` 参数来判断一个变量是否不为空。例如:
```bash
if [ -n "$variable" ]; then
echo "Variable is not empty"
fi
```
其中,`$variable` 是要判断的变量名,`-n` 表示判断是否不为空,如果不为空,则执行 `echo` 语句输出结果。注意,变量名需要用双引号括起来,否则可能会出现意料之外的结果。
阅读全文