freebsd-skq/bin/sh
Jilles Tjoelker 4b45b49a70 sh: Remove special %builtin PATH entry.
All builtins are now always found before a PATH search.

Most ash derivatives have an undocumented feature where the presence of an
entry "%builtin" in $PATH will cause builtins to be checked at that point of
the PATH search, rather than before looking at any directories as documented
in the man page (very old versions do document this feature).

I am removing this feature from sh, as it complicates the code, may violate
expectations (for example, /usr/bin/alias is very close to a forkbomb with
PATH=/usr/bin:%builtin, only /usr/bin/builtin not being another link saves
it) and appears to be unused (all the %builtin google code search finds is
in some sort of ash source code).

Note that aliases and functions took and take precedence above builtins.
Because aliases work on a lexical level they can only ever be overridden on
a lexical level (quoting or preceding 'builtin' or 'command'). Allowing
override of functions via PATH does not really fit in the model of sh and it
would work differently from %builtin if implemented.

Note: POSIX says special builtins are found before functions. We comply to
this because we do not allow functions with the same name as a special
builtin.

Silence from:	freebsd-hackers@ (message sent 20101225)
Discussed with:	dougb
2011-01-09 21:07:30 +00:00
..
bltin sh: Add kill builtin. 2010-12-21 22:47:34 +00:00
funcs
alias.c sh: Add a function to print warnings (with command name and newline). 2010-12-21 20:47:06 +00:00
alias.h
arith_lex.l sh: arith: Disallow decimal constants starting with 0 (containing 8 or 9). 2010-12-18 23:03:51 +00:00
arith.h
arith.y
builtins.def sh: Add kill builtin. 2010-12-21 22:47:34 +00:00
cd.c sh: Add a function to print warnings (with command name and newline). 2010-12-21 20:47:06 +00:00
cd.h
error.c sh: Add a function to print warnings (with command name and newline). 2010-12-21 20:47:06 +00:00
error.h sh: Add a function to print warnings (with command name and newline). 2010-12-21 20:47:06 +00:00
eval.c sh: Do not call exitshell() from evalcommand() unless evalcommand() forked 2011-01-05 23:17:29 +00:00
eval.h
exec.c sh: Remove special %builtin PATH entry. 2011-01-09 21:07:30 +00:00
exec.h
expand.c sh: Don't do optimized command substitution if expansions have side effects. 2010-12-28 21:27:08 +00:00
expand.h sh: Don't do optimized command substitution if expansions have side effects. 2010-12-28 21:27:08 +00:00
histedit.c sh: Properly restore exception handler in fc. 2010-12-29 19:39:51 +00:00
init.h
input.c
input.h
jobs.c sh: Add kill builtin. 2010-12-21 22:47:34 +00:00
jobs.h
mail.c
mail.h
main.c sh: Make exit without parameters from EXIT trap POSIX-compliant. 2011-01-08 23:08:13 +00:00
main.h
Makefile sh: Add kill builtin. 2010-12-21 22:47:34 +00:00
memalloc.c sh: Simplify "stack string" code slightly. 2010-12-27 22:18:27 +00:00
memalloc.h sh: Simplify "stack string" code slightly. 2010-12-27 22:18:27 +00:00
miscbltin.c sh: Code size optimizations to "stack string" memory allocation: 2010-11-23 22:17:39 +00:00
mkbuiltins
mkinit.c
mknodes.c
mksyntax.c
mktokens
myhistedit.h
mystring.c
mystring.h
nodes.c.pat
nodetypes
options.c
options.h
output.c sh: Use vsnprintf() rather than crafting our own in fmtstr(). 2010-12-11 17:47:27 +00:00
output.h
parser.c sh: Allow arbitrary large numbers in CHECKSTRSPACE. 2010-12-26 13:25:47 +00:00
parser.h
redir.c sh: Check if dup2 for redirection from/to a file succeeds. 2010-12-31 18:20:17 +00:00
redir.h
sh.1 sh(1): Explain why it is a bad idea to use aliases in scripts. 2010-12-21 22:48:56 +00:00
shell.h
show.c
show.h
TOUR
trap.c sh: Make exit without parameters from EXIT trap POSIX-compliant. 2011-01-08 23:08:13 +00:00
trap.h sh: Make exit without parameters from EXIT trap POSIX-compliant. 2011-01-08 23:08:13 +00:00
var.c sh: Check readonly status for assignments on regular builtins. 2011-01-01 13:26:18 +00:00
var.h sh: Check readonly status for assignments on regular builtins. 2011-01-01 13:26:18 +00:00