xref: /dflybsd-src/tools/regression/bin/sh/builtins/type1.0 (revision 3e3895bf4584c1562faf4533cbd97026ee6a8dcf)
1# $FreeBSD: head/bin/sh/tests/builtins/type1.0 165931 2007-01-11 00:25:20Z stefanf $
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