set -e
trap "do your custom stuff here" EXIT
...
# now whenever there's an error condition, due to the set -e, the script will exit
# and upon this exit, the trap custom message shall be activated.
Existe uma maneira de adicionar um manipulador de erro ao bash, que é executado se algum comando no script falhar?
Estou ciente de set -o errexit
, mas isso não me permite adicionar um manipulador de erros personalizado.
set -e
trap "do your custom stuff here" EXIT
...
# now whenever there's an error condition, due to the set -e, the script will exit
# and upon this exit, the trap custom message shall be activated.
Tags error-handling bash