1# $FreeBSD: head/tools/regression/bin/sh/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