eolas/zk/Check_if_value_null_in_Bash.md

15 lines
174 B
Markdown
Raw Normal View History

2025-02-22 10:17:45 +00:00
---
tags: [shell]
created: Wednesday, February 19, 2025
---
# Check if value is null in Bash
```sh
if [ -z $var ]; then
# Value is null
else
# Value is not null
fi
```