Skip to content

Instantly share code, notes, and snippets.

@imonroe
Created June 27, 2023 14:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imonroe/b2eb3d8a6e2aab6e9a350032b74c6581 to your computer and use it in GitHub Desktop.
Save imonroe/b2eb3d8a6e2aab6e9a350032b74c6581 to your computer and use it in GitHub Desktop.
Bash Script template
#!/bin/bash
# Three-fingered Claw Technique
yell() { echo "$0: $*" >&2; }
die() { yell "$*"; exit 111; }
try() { "$@" || die "cannot $*"; }
# Do the thing.
function finish {
# Your cleanup code here
}
trap finish EXIT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment