xref: /freebsd-14.2/bin/sh/tests/builtins/type1.0 (revision d0b2dbfa)
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