Answers for "check if a variable is null in bash"

0

check if a variable is null in bash

if [[ -n "$list_Data" ]]
then
    echo "not Empty"
else
    echo "empty"
fi
Posted by: Guest on March-20-2021

Code answers related to "check if a variable is null in bash"

Browse Popular Code Answers by Language