xref: /freebsd/bin/sh/tests/builtins/type1.0 (revision 069ac184)
1command -v not-here && exit 1
2command -v /not-here && exit 1
3command -V not-here && exit 1
4command -V /not-here && exit 1
5type not-here && exit 1
6type /not-here && exit 1
7exit 0
8