Parar de continuar o script sem a entrada correta no Shell Script Unix Putty

0

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
    
por Dillan 24.04.2018 / 00:01

0 respostas

Tags