Como terminar um script de shell?

5

Eu já estou escrevendo um script no Linux e queria adicionar um pouco mais e perguntar ao usuário se ele quer sair do programa. Alguém pode me ajudar a descobrir como posso fazer isso?

    
por Jas 29.09.2014 / 15:42

1 resposta

1

Tente isto:

read -p "Do you want to continue? (y/N) " ANS
    # if not, do something else, otherwise fall out the bottom
    [ "$ANS" = "y" -o "$ANS" = "Y" ] && {
            # commands here what to do if we stick around
            echo "OK, we will continue"
            # better put something else to do here or we'll fall out anyway.
            }
    
por 29.09.2014 / 17:29