यदि आप नेत्रहीन बाहर निकलने के बजाय एक त्रुटि को संभालने में सक्षम होना चाहते हैं set -e
, तो उपयोग करने के बजाय , छद्म संकेत trap
पर उपयोग करें ERR
।
#!/bin/bash
f () {
errorCode=$? # save the exit code as the first thing done in the trap function
echo "error $errorCode"
echo "the command executing at the time of the error was"
echo "$BASH_COMMAND"
echo "on line ${BASH_LINENO[0]}"
# do some error handling, cleanup, logging, notification
# $BASH_COMMAND contains the command that was being executed at the time of the trap
# ${BASH_LINENO[0]} contains the line number in the script of that command
# exit the script or return to try again, etc.
exit $errorCode # or use some other value or do return instead
}
trap f ERR
# do some stuff
false # returns 1 so it triggers the trap
# maybe do some other stuff
अन्य जालों को अन्य संकेतों को संभालने के लिए सेट किया जा सकता है, जिनमें सामान्य यूनिक्स सिग्नल और अन्य बैश छद्म सिग्नल शामिल हैं RETURN
और DEBUG
।