如何检查 Bash 中的变量是否为空?
在 Bash 中,至少以下命令测试 $var 是否为空 :
if [[ -z "$var" ]]; then # Do what you want fi
命令man test是你的朋友。
man test