Observe:
$ ( set -e; false ; true ) || echo false1
$ ( set -e; false ; true ) ; echo code=$?
code=1
Além disso:
$ ( set -e; false ; true; echo inside=$? ) || echo false1
inside=0
Aparentemente, quando o subshell é seguido por um ||
, set -e
não faz com que o subshell saia ao alcançar o comando false
. Em vez disso, a subshell continua e executa true
(e echo inside=$?
).
A filosofia de set -e
é tipicamente que ela só é obtida após erros não detectados. Aqui, a presença de ||
fora do subshell parece dizer ao shell que o erro dentro do subshell é 'pego' e, portanto, set -e
não causa uma saída após false
.
set -e
tem muitos comportamentos surpreendentes. Consulte "Por que não definir -e fazer o que eu esperado? "
Documentação
O comportamento acima é sugerido na documentação em man bash
:
-e
Exit immediately if a pipeline (which may consist of a single simple command), a list, or a compound command (see SHELL GRAMMAR above), exits with a non-zero status. The shell does not exit if the command that fails is part of the command list immediately following a while or until keyword, part of the test following the if or elif reserved words, part of any command executed in a && or || list except the command following the final && or ||, any command in a pipeline but the last, or if the command's return value is being inverted with !. If a compound command other than a subshell returns a non-zero status because a command failed while -e was being ignored, the shell does not exit. A trap on ERR, if set, is executed before the shell exits. This option applies to the shell environment and each subshell environment separately (see COMMAND EXECUTION ENVIRONMENT above), and may cause subshells to exit before executing all the commands in the subshell. [Emphasis added.]