Skip to content

Instantly share code, notes, and snippets.

@7696122
Created December 1, 2016 05:28
Show Gist options
  • Save 7696122/d3ea961d82d535bf862e2c50970dc754 to your computer and use it in GitHub Desktop.
Save 7696122/d3ea961d82d535bf862e2c50970dc754 to your computer and use it in GitHub Desktop.
function checkInstalled {
installed=""
# if hash $1 2>/dev/null; then
if command -v $1 2>/dev/null; then
installed=0
else
installed=1
fi
return $installed
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment