I have been trying to fix an error the error says "your_input command not found" even though a variable is not a command
#/bin/bash
echo "Hello, World!!"
echo "Press enter to exit."
read your_input
if [your_input == ""]
then
echo "Bye!!"
else
echo "You typed $your_input anyway. Bye!!"
fi
Edit:
Thank you to costaparas for telling me to use [ "$your_input" == "" ]