bash jika nol atau kosong

if [ -z "$variable" ];
  then echo "$variable is null";
  else echo "$variable is not null";
fi
No Name Pro