Similarly to set -e
performs an exit
on "uncaught" $? != 0
, I'd like to have this event trigger the execution of another command, e.g. a logger
call. How can this be done?
Take the 2-minute tour
×
Unix & Linux Stack Exchange is a question and answer site for users of Linux, FreeBSD and other Un*x-like operating systems. It's 100% free, no registration required.
|
||||
|
As hinted at in this question, the answer is setting up a
In bash, the variable
Of course you might be better off declaring a function and passing it the |
|||||
|