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