Skip to content

Instantly share code, notes, and snippets.

@jgwill
Created April 29, 2019 20:02
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 jgwill/f12ca5eddeff2a8dd3bbe6c2cbb2fc82 to your computer and use it in GitHub Desktop.
Save jgwill/f12ca5eddeff2a8dd3bbe6c2cbb2fc82 to your computer and use it in GitHub Desktop.
Echo a command was not found in the BASH environment
#!/bin/bash
command -v foo >/dev/null 2>&1 || { echo >&2 "I require foo but it's not installed. Aborting."; exit 1; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment