Make hash, type and ulimit available via execve().
These are specified by POSIX but are not special builtins, and therefore need to be available via execve() and utilities like time, nohup, xargs. (Note that hash was moved from the XSI option to the base in the 2008 standard.) Like most of the POSIX "regular builtin commands", these need to be executed in a shell environment for full functionality, although they may still be of some use outside one. Unlike the POSIX special and regular builtin commands, POSIX does not require these to be found before a PATH search, although that could be an oversight. Like some of the utilities already provided by usr.bin/alias, these may lead to confusing results when invoked from csh(1).
This commit is contained in:
parent
fc0a61a401
commit
36f8c7ebef
@ -245,7 +245,7 @@ but are implemented as scripts using a builtin command of the same name.
|
||||
.It Ic getopts Ta No** Ta \&No Ta Yes
|
||||
.It Ic glob Ta \&No Ta Yes Ta \&No
|
||||
.It Ic goto Ta \&No Ta Yes Ta \&No
|
||||
.It Ic hash Ta \&No Ta \&No Ta Yes
|
||||
.It Ic hash Ta No** Ta \&No Ta Yes
|
||||
.It Ic hashstat Ta \&No Ta Yes Ta \&No
|
||||
.It Ic history Ta \&No Ta Yes Ta \&No
|
||||
.It Ic hup Ta \&No Ta Yes Ta \&No
|
||||
@ -290,8 +290,8 @@ but are implemented as scripts using a builtin command of the same name.
|
||||
.It Ic times Ta \&No Ta \&No Ta Yes
|
||||
.It Ic trap Ta \&No Ta \&No Ta Yes
|
||||
.It Ic true Ta Yes Ta \&No Ta Yes
|
||||
.It Ic type Ta \&No Ta \&No Ta Yes
|
||||
.It Ic ulimit Ta \&No Ta \&No Ta Yes
|
||||
.It Ic type Ta No** Ta \&No Ta Yes
|
||||
.It Ic ulimit Ta No** Ta \&No Ta Yes
|
||||
.It Ic umask Ta No** Ta Yes Ta Yes
|
||||
.It Ic unalias Ta No** Ta Yes Ta Yes
|
||||
.It Ic uncomplete Ta \&No Ta Yes Ta \&No
|
||||
|
@ -10,8 +10,11 @@ LINKS= ${BINDIR}/alias ${BINDIR}/bg \
|
||||
${BINDIR}/alias ${BINDIR}/fc \
|
||||
${BINDIR}/alias ${BINDIR}/fg \
|
||||
${BINDIR}/alias ${BINDIR}/getopts \
|
||||
${BINDIR}/alias ${BINDIR}/hash \
|
||||
${BINDIR}/alias ${BINDIR}/jobs \
|
||||
${BINDIR}/alias ${BINDIR}/read \
|
||||
${BINDIR}/alias ${BINDIR}/type \
|
||||
${BINDIR}/alias ${BINDIR}/ulimit \
|
||||
${BINDIR}/alias ${BINDIR}/umask \
|
||||
${BINDIR}/alias ${BINDIR}/unalias \
|
||||
${BINDIR}/alias ${BINDIR}/wait
|
||||
|
Loading…
Reference in New Issue
Block a user