Überprüfen Sie, ob eine Variable in Bash null ist

if [[ -n "$list_Data" ]]
then
    echo "not Empty"
else
    echo "empty"
fi
Gifted Gorilla