1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-09-19 14:54:05 -07:00
rc/sh/has

9 lines
270 B
Text
Raw Normal View History

2021-07-29 00:37:35 -07:00
#!/usr/bin/env sh
# compat: +ash +bash +dash -hush +ksh +mksh +oksh +osh +posh +yash +zsh
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 "$@"