In the below simple example, if CONDITION is not set in the script, running the script prints "True". However, one would expect it to print "False". What is the reason for this behavior?
# Set CONDITION by using true or false:
# CONDITION=true or false
if $CONDITION; then
    echo "True"
else
    echo "False"
fi
 
     
    