Last active
June 6, 2022 17:53
-
-
Save stavxyz/bba16a257010848e534ac5c9e0e56172 to your computer and use it in GitHub Desktop.
BASHISM - If you are a civilized person, you'll start all your bash scripts like this
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Undefined variables are errors. | |
set -euoE pipefail | |
errcho () | |
{ | |
printf "%s\n" "$@" 1>&2 | |
} | |
errxit () | |
{ | |
errcho "$@" | |
# shellcheck disable=SC2119 | |
errdie | |
} | |
# shellcheck disable=SC2120 | |
errdie() { | |
if [ -n "${1:-}" ]; then | |
_errmsg="โฉ Error at line ${1} of ${BASH_SOURCE:-${0:-}}" | |
if [ -n "${2:-}" ]; then | |
_errmsg="${_errmsg} on command '${2}'" | |
if [ -n "${3:-}" ]; then | |
_errmsg="${_errmsg} in function '${3}'" | |
fi | |
fi | |
fi | |
errcho "${_errmsg}" | |
echo "๐" # perform any cleanup | |
exit 1 | |
} | |
intdie() { | |
errcho "๐ฟ script discontinued." | |
echo "๐" # perform any cleanup | |
exit 1 | |
} | |
trap 'errdie ${LINENO} ${BASH_COMMAND:-} ${FUNCNAME:-}' ERR | |
trap 'intdie ${LINENO} ${BASH_COMMAND:-} ${FUNCNAME:-}' SIGHUP SIGINT SIGTERM |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment