Skip to content

Instantly share code, notes, and snippets.

@gjabouley-invn
Created July 23, 2019 13:06
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 gjabouley-invn/592acb3d6e35721bece87c78837274e4 to your computer and use it in GitHub Desktop.
Save gjabouley-invn/592acb3d6e35721bece87c78837274e4 to your computer and use it in GitHub Desktop.
Bashism
yell() { echo "$0: $*" >&2; }
die() { yell "$*"; exit 1; }
try() { "$@" || die "cannot $*"; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment