I am trying to make a shell script that works as an ordering system. I have started with the first steps but it does not take the input I am not sure of what I am doing wrong. I have attached an image of what end result should be. What is the next step I should take and what should I begin to research
#!/bin/bash
clear
echo "orderBeds"
read -p "Please Enter you choice (Quit/Order)" order
if [$order -e Order|order]
then
echo "Please enter you name?"
elif [$order -e Quit|quit]
then
exit
fi
done
-eis for testing the existence of files; to test the equality of two strings, use==.if [$order -e Order|order]will attempt to execute a command named[$orderwith arguments-eandOrderand pipe the output to a command namedorder]. That is almost certainly not what you want.