use o seguinte comando
bind 'RETURN: ";if [[ $? == 0 ]]; then exit; fi;\n"'
se você precisar trabalhar sempre que iniciar uma nova sessão, adicione este comando ao arquivo ~/.bashrc
e execute source ~/.bashrc
para que ele tenha efeito imediatamente.
se você digitar
ls
será automaticamente substituído por
ls; if [[ $? == 0 ]]; then exit; fi;