Kann jemand das Bash / Set-e-Verhalten im folgenden Code-Snippet erklären? #!/bin/bash # Comment if you want to test the trap only set -e -o pipefail -u -E # Comment if you want to test the set -e only trap "echo ERROR CAUGHT; exit 12" ERR function reproduce() { # Trigger arithmetic error on...