Eu tenho um script de shell aqui, mas não sei como fazer com que o Script mostre o 'Please order or quit' sem o script continuar. Quando eu digito algo aleatório, ele continua, mas traz a mensagem.
read -rp "Do you want to order or quit?" start
if echo "$start" | grep -iq 'order'; then
continue
elif echo "$start" | grep -iq 'quit'; then
exit 0
else
echo "Please order or quit";
fi
Tags shell