174 B
174 B
tags | created | |
---|---|---|
|
Wednesday, February 19, 2025 |
Check if value is null in Bash
if [ -z $var ]; then
# Value is null
else
# Value is not null
fi
tags | created | |
---|---|---|
|
Wednesday, February 19, 2025 |
if [ -z $var ]; then
# Value is null
else
# Value is not null
fi