1# $FreeBSD: src/tools/regression/bin/sh/builtins/type1.0,v 1.1 2007/01/11 00:25:20 stefanf Exp $
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