Denys Vlasenko 6814cbc928 ash: extend var_bash4.tests; nocode changes пре 14 година
..
ash_test 6814cbc928 ash: extend var_bash4.tests; nocode changes пре 14 година
hush_test ba2dcccd79 *: trailing empty lines removed пре 14 година
msh_test 3581c62515 whitespace fixes пре 14 година
Config.src 6adf2aad38 hush: move msh/lash config into hush.c, no code changes пре 14 година
Kbuild.src 51ca7761a3 cttyhack: move build system bits into cttyhack.c, no code changes пре 14 година
README 131ed3bcc9 update shell/README пре 14 година
README.job 5f786c24e4 hush: small code shrink; style fixes пре 17 година
ash.c b0fbe4b540 ash: add a testcase for bug 2281 (currently fails). Small code cleanups. пре 14 година
ash_doc.txt b21f379639 ash: fix TRACE commands пре 15 година
ash_ptr_hack.c 93b8263652 fix build with gcc -combine пре 16 година
bbsh.c 2ec91aead5 *: remove some uses of argc пре 14 година
brace.txt 647553a4fc hush: wait for `cmd` to complete, and immediately store its exitcode in $? пре 14 година
cttyhack.c 17662801ec cttyhack: make it survive WERROR build пре 14 година
hush.c f3ea792bad *: mass cosmetic removal of extra empty lines. no code changes пре 14 година
hush_doc.txt bcb25537d0 hush: implement break and continue пре 16 година
hush_leaktool.sh dcd78c4d0f hush: fix "export not_yet_defined_var", fix parsing of "cmd | }" пре 15 година
match.c 7306727d1b shell: split read builtin from ash пре 14 година
match.h 03dad22f8a hush: use ash's read builtin пре 14 година
math.c 03dad22f8a hush: use ash's read builtin пре 14 година
math.h 03dad22f8a hush: use ash's read builtin пре 14 година
random.c 76ace254e1 ash,hush: fix $RANDOM in children being repeated пре 14 година
random.h 7306727d1b shell: split read builtin from ash пре 14 година
shell_common.c 17e0e43c35 ulimit: set both hard and soft limits by default пре 14 година
shell_common.h 599ae1eb9f shell: consolidate builtin_foo.? into shell_common.?; delete obsolete shells пре 14 година

README

http://www.opengroup.org/onlinepubs/9699919799/
Open Group Base Specifications Issue 7


http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap01.html
Shell & Utilities

It says that any of the standard utilities may be implemented
as a regular shell built-in. It gives a list of utilities which
are usually implemented that way (and some of them can only
be implemented as built-ins, like "alias"):

alias
bg
cd
command
false
fc
fg
getopts
jobs
kill
newgrp
pwd
read
true
umask
unalias
wait


http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html
Shell Command Language

It says that shell must implement special built-ins. Special built-ins
differ from regular ones by the fact that variable assignments
done on special builtin are *PRESERVED*. That is,

VAR=VAL special_builtin; echo $VAR

should print VAL.

(Another distinction is that an error in special built-in should
abort the shell, but this is not such a critical difference,
and moreover, at least bash's "set" does not follow this rule,
which is even codified in autoconf configure logic now...)

List of special builtins:

. file
: [argument...]
break [n]
continue [n]
eval [argument...]
exec [command [argument...]]
exit [n]
export name[=word]...
export -p
readonly name[=word]...
readonly -p
return [n]
set [-abCefhmnuvx] [-o option] [argument...]
set [+abCefhmnuvx] [+o option] [argument...]
set -- [argument...]
set -o
set +o
shift [n]
times
trap n [condition...]
trap [action condition...]
unset [-fv] name...

In practice, no one uses this obscure feature - none of these builtins
gives any special reasons to play such dirty tricks.

However. This section also says that *function invocation* should act
similar to special built-in. That is, variable assignments
done on function invocation should be preserved after function invocation.

This is significant: it is not unthinkable to want to run a function
with some variables set to special values. But because of the above,
it does not work: variable will "leak" out of the function.