summary refs log tree commit diff
path: root/bin/1sh/tests/builtins/type1.0
blob: 09ae8692deebaa78e0817905be34e4cf99b37ca6 (plain) (blame)
1
2
3
4
5
6
7
8
# $FreeBSD: releng/12.1/bin/sh/tests/builtins/type1.0 165931 2007-01-11 00:25:20Z stefanf $
command -v not-here && exit 1
command -v /not-here && exit 1
command -V not-here && exit 1
command -V /not-here && exit 1
type not-here && exit 1
type /not-here && exit 1
exit 0