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