1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-26 16:40:29 +01:00

19059: add -v, -V and -p flags required by POSIX to the command builtin

This commit is contained in:
Oliver Kiddle 2003-09-11 07:00:05 +00:00
parent a6f583e418
commit 6e09c17757
7 changed files with 159 additions and 50 deletions

View file

@ -194,7 +194,18 @@ followed regardless of the state of the tt(CHASE_LINKS) option.
)
alias(chdir)(cd)
module(clone)(zsh/clone)
prefix(command)
findex(command)
item(tt(command) [ tt(-pvV) ] var(simple command))(
The simple command argument is taken as an external command instead of
a function or builtin and is executed. If the tt(POSIX_BUILTINS) option
is set, builtins will also be executed but certain special properties
of them are suppressed. The tt(-p) flag causes a default path to be
searched instead of that in tt($path). With the tt(-v) flag, tt(command)
is similar to tt(whence) and with tt(-V), it is equivalent to tt(whence
-v).
See also noderef(Precommand Modifiers).
)
module(comparguments)(zsh/computil)
module(compcall)(zsh/compctl)
module(compctl)(zsh/compctl)