1165931Sstefanf# $FreeBSD: releng/11.0/bin/sh/tests/builtins/type1.0 165931 2007-01-11 00:25:20Z stefanf $
2165931Sstefanfcommand -v not-here && exit 1
3165931Sstefanfcommand -v /not-here && exit 1
4165931Sstefanfcommand -V not-here && exit 1
5165931Sstefanfcommand -V /not-here && exit 1
6165931Sstefanftype not-here && exit 1
7165931Sstefanftype /not-here && exit 1
8165931Sstefanfexit 0
9