busybox --list | busybox grep -qF md5sum && echo yes || echo no(Tested with Busybox v1.35.0 in Debian 12.)
A shell function that implements the above solution:
_busybox_has () { busybox --list | busybox grep -qxF "$1"; }Usage:
_busybox_has md5sum && echo yes || echo no_busybox_has kitchensink && echo yes || echo nothere is no guarantee as to whether
grepwill be available
grep is so useful, it would be a peculiarity not to have it. Just in case, the following shell function implements _busybox_has using just busybox --list and features of the POSIX sh (not even [):
_busybox_has () {busybox --list | ( while IFS= read -r line; do case "$line" in"$1") return 0 ;; esacdonereturn 1 )}