dotfiles/zsh/func/binary_exists

10 lines
136 B
Text
Raw Normal View History

2021-12-31 11:54:55 -08:00
# Eryn Wells <eryn@erynwells.me>
# vim: set ft=zsh:
2021-12-31 11:54:55 -08:00
binary_exists() {
hash $1 1>/dev/null 2>&1
return $?
}
binary_exists "$@"