即http://fvue.nl/wiki/Bash:_Error_handling#Set_ERR_trap_to_exit
为什么set -o errtrace
必须从函数调用中设置/取消设置陷阱?
#!/usr/bin/env bash
function trapit {
echo 'trapped in a box'
}
function setTrap {
trap 'trapit' ERR
}
function unsetTrap {
trap - ERR
}
function foo_init {
fooOldErrtrace=$(set +o | grep errtrace)
set -o errtrace
trap 'echo trapped' ERR # Set ERR trap
}
function foo_deinit {
trap - ERR # Reset ERR trap
eval $fooOldErrtrace # Restore `errtrace' setting
unset fooOldErrtrace # Delete global variable
}
# foo_init
setTrap
echo 'set'
false
echo 'unset'
#foo_deinit
unsetTrap
false
答案 0 :(得分:0)
根据man bash(5),函数不会在没有打开errtrace标志的情况下继承ERR陷阱。我不知道为什么ERR陷阱不能默认继承,但是......现在是这样:)
您可以使用我的示例代码测试此行为:
#!/usr/bin/env bash
trapit () {
echo 'some error trapped'
}
doerr1 () {
echo 'I am the first err generator and i return error status to the callee'
return 1
}
doerr2 () {
echo 'I am the second err generator and i produce an error inside my code'
fgrep a /etc/motttd
return 0
}
[[ $1 ]] && set -o errtrace
trap trapit ERR
doerr1
doerr2
echo 'We will produce an exception in the main program...'
cat /etc/ftab | fgrep a
echo 'OK, thats done, you see it :)'
如果您将任何参数传递给此脚本,则会打开errtrace标志,当doerr2尝试执行某些可怕的操作时,您将看到该异常被“捕获”。