how to check if a string is empty bahs? code example
Example: bash if null or empty
if [ -z "$variable" ];
then echo "$variable is null";
else echo "$variable is not null";
fi
if [ -z "$variable" ];
then echo "$variable is null";
else echo "$variable is not null";
fi