Skip to content

Instantly share code, notes, and snippets.

@mattes
Created July 10, 2013 17:44
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 mattes/5968454 to your computer and use it in GitHub Desktop.
Save mattes/5968454 to your computer and use it in GitHub Desktop.
bash helpers
function installed? { command -v $1 >/dev/null 2>&1; }
function dir? { [[ -d $1 ]]; }
function brew_installed? { brew list | grep -x $1 >/dev/null 2>&1; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment