bash if equal null code example
Example 1: bash if null or empty
if [ -z "$variable" ];
then echo "$variable is null";
else echo "$variable is not null";
fi
Example 2: shell cehck if string is null
my_var="nixCraft"
if [ -z "$my_var" ]
then
echo "\$my_var is NULL"
else
echo "\$my_var is NOT NULL"
fi
// https://www.cyberciti.biz/faq/bash-shell-find-out-if-a-variable-has-null-value-or-not/