Проверьте, является ли переменная NULL в Bash

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