1# $FreeBSD: src/tools/regression/bin/sh/builtins/command3.0,v 1.2 2010/08/16 17:18:08 jilles Exp $
2command -v ls
3command -v true
4command -v /bin/ls
5
6fun() {
7	:
8}
9command -v fun
10command -v break
11command -v if
12
13alias foo=bar
14command -v foo
15