blob: 2a17f5940d511e664e89ffd94d572da263888268 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $FreeBSD: src/tools/regression/bin/sh/builtins/command5.0,v 1.1.10.1.2.1 2009/10/25 01:10:29 kensmith Exp $
command -V ls
command -V true
command -V /bin/ls
fun() {
}
command -V fun
command -V break
command -V if
command -V {
alias foo=bar
command -V foo
|