1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-07-08 05:49:59 -07:00
rc/sh/has

9 lines
234 B
Plaintext
Raw Normal View History

2021-07-29 00:37:35 -07:00
#!/usr/bin/env sh
# YES_ZSH YES_BASH YES_DASH YES_ASH
2021-07-29 00:37:35 -07:00
has() { ### @- [`have`,](#have) silently.
if [ -z "$ZSH_VERSION" ]; then which -- "$1"; else whence -p -- "$1"; fi
} >/dev/null 2>/dev/null
2021-07-29 00:37:35 -07:00
[ -n "${preload+-}" ] || has "$@"