xref: /freebsd-src/bin/sh/tests/builtins/command3.0 (revision e71b70530d95c4f34d8bdbd78d1242df1ba4a945)
1# $FreeBSD$
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