dotfiles/zsh/func/binary_exists

11 lines
143 B
Text
Raw Normal View History

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