スクリプトの特定のコマンドが失敗した場合に実行されるエラーハンドラをbashに追加する方法はありますか?
わかりましたset -o errexit
。ただし、この方法ではカスタムエラーハンドラを追加することはできません。
ベストアンサー1
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.