void-packages/common/wrappers/which.sh
Đoàn Trần Công Danh c22acb3072 99-pkglint: forbid /usr/etc
data files should go to /usr/share, config files should go to /etc
2022-09-06 17:43:20 +07:00

13 lines
126 B
Bash

#!/bin/sh
ret=0
while test $# != 0; do
case "$1" in
-*) ;;
*) command -v "$1" || ret=1 ;;
esac
shift
done
exit "$ret"