Skip to content

Instantly share code, notes, and snippets.

@oskosk
Created June 7, 2015 18:47
Show Gist options
  • Select an option

  • Save oskosk/ff6d75e423a554701e44 to your computer and use it in GitHub Desktop.

Select an option

Save oskosk/ff6d75e423a554701e44 to your computer and use it in GitHub Desktop.
Shell - Three-Fingered Claw technique
# include these first in your scripts
yell() { echo "$0: $*" >&2; }
die() { yell "$*"; exit 111; }
try() { "$@" || die "cannot $*"; }
@ikenigma
Copy link

ikenigma commented Nov 6, 2015

Don't forget to 'exit 0' or 'true' at the end,

https://gist.github.com/dotike/8257326

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