Compruebe si una variable es nula en Bash
if [[ -n "$list_Data" ]]
then
echo "not Empty"
else
echo "empty"
fi
Gifted Gorilla
if [[ -n "$list_Data" ]]
then
echo "not Empty"
else
echo "empty"
fi