Skip to content

Instantly share code, notes, and snippets.

@klashxx
Created July 6, 2016 11:34
Show Gist options
  • Save klashxx/d33ef40d0d5c1dbb8eedff4b22f9999d to your computer and use it in GitHub Desktop.
Save klashxx/d33ef40d0d5c1dbb8eedff4b22f9999d to your computer and use it in GitHub Desktop.
#!/bin/bash
set -e
err_report() {
echo "Error on line $1"
}
trap 'err_report $LINENO' ERR
ech hello
echo "good"
@klashxx
Copy link
Author

klashxx commented Jul 6, 2016

$ ./trap.sh 
./trap.sh: line 11: ech: command not found
Error on line 11
$ echo $?
127

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment