1# $FreeBSD: head/tools/regression/bin/sh/builtins/command3.0 211399 2010-08-16 17:18:08Z jilles $
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