dotfiles/zsh/func/binary_exists

8 lines
117 B
Text

# Eryn Wells <eryn@erynwells.me>
binary_exists() {
hash $1 1>/dev/null 2>&1
return $?
}
binary_exists "$@"