Skip to content

Instantly share code, notes, and snippets.

@alfonsojon
Last active December 20, 2015 14:19
Show Gist options
  • Save alfonsojon/6146033 to your computer and use it in GitHub Desktop.
Save alfonsojon/6146033 to your computer and use it in GitHub Desktop.
Should be better.
#!/bin/sh
cmdcheck () {
if command -v $1 >/dev/null 2>&1; then
return 0
else
return 1
fi
}
case $1 in
cmdcheck) cmdcheck $2;;
esac
return $?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment