aboutsummaryrefslogtreecommitdiff
path: root/shell
AgeCommit message (Expand)Author
2017-07-28ash: less hackish implementation of evaltreenr()Denys Vlasenko
2017-07-26ash: force inlining of a trivial functionDenys Vlasenko
2017-07-26ash: revert previous implementation of "A=1 A=2 B=$A cmd" codeDenys Vlasenko
2017-07-26ash: [VAR] Fix loss of variables when hash collidesDenys Vlasenko
2017-07-26ash: [VAR] Do not poplocalvars prematurely on regular utilitiesDenys Vlasenko
2017-07-26ash: [VAR] Fix poplocalvar on abnormal exit from functionDenys Vlasenko
2017-07-26ash: [VAR] Replace cmdenviron with localvarsDenys Vlasenko
2017-07-26ash: [VAR] Fix poplocalvar leakDenys Vlasenko
2017-07-26ash: [VAR] Add localvars nestingDenys Vlasenko
2017-07-26ash: alloc slightly smaller buffer in cvtnum(); faster unsetvar()Denys Vlasenko
2017-07-26ash: fix redir_leak.tests if STANDALONE=yDenys Vlasenko
2017-07-26shell: remove ${#+} tests, it is not a valid constructDenys Vlasenko
2017-07-26hush: fix ${##}, ${#?}, ${#!} handlingDenys Vlasenko
2017-07-25ash: [SHELL] Optimize dash -c "command" to avoid a forkDenys Vlasenko
2017-07-25ash: allow "trap NUM [SIG]..." syntaxDenys Vlasenko
2017-07-25ash: [REDIR] Replace GPL noclobberopen code with the FreeBSD versionDenys Vlasenko
2017-07-25ash: sync up with dash with respect to redirection escapingDenys Vlasenko
2017-07-25ash: [VAR] Move unsetvar functionality into setvareqDenys Vlasenko
2017-07-25ash: import param_expand_default.tests from hushDenys Vlasenko
2017-07-25hush: treat ${#?} as "length of $?"Denys Vlasenko
2017-07-25ash: add a few tests from hush-vars/*Denys Vlasenko
2017-07-24ash: fix comment, no code changesDenys Vlasenko
2017-07-24ash: copy three tests from hush_test/hush-signals/*Denys Vlasenko
2017-07-24shell: some additions to *sh-misc/* testsDenys Vlasenko
2017-07-24ash: add most of hush process subst testsDenys Vlasenko
2017-07-24hush: fix a case when redirect to a closed fd #1 is not restoring (closing) itDenys Vlasenko
2017-07-24ash: add all hush parsing tests to ast testsDenys Vlasenko
2017-07-24hush: use mempcpy where usefulDenys Vlasenko
2017-07-23ash: fix for last commitDenys Vlasenko
2017-07-23ash: use mempcpy() in more placesDenys Vlasenko
2017-07-21ash: use mempcpy() where appropriateDenys Vlasenko
2017-07-21ash: suppress readonly1.tests false positive; add readonly0.testsDenys Vlasenko
2017-07-21ash: improve set -x to quote strings as necessaryDenys Vlasenko
2017-07-21config: deindent all help textsDenys Vlasenko
2017-07-20shell: optional support for read -t N.NNN, closes 10101Denys Vlasenko
2017-07-18ash: remove contradicting size info in config helpDenys Vlasenko
2017-07-18hush: remove contradicting size info in config helpDenys Vlasenko
2017-07-18Update menuconfig items with approximate applet sizesDenys Vlasenko
2017-07-18hush: tweak "help" outputDenys Vlasenko
2017-07-18hush: fix readonly2.tests failureDenys Vlasenko
2017-07-18hush: another testcase for "READONLY_VAR=VAL BLTIN ..."Denys Vlasenko
2017-07-18hush: do not assign to readonly VAR in "VAR=VAL CMD" syntax tooDenys Vlasenko
2017-07-18hush: add readonly testcase, fix falloutDenys Vlasenko
2017-07-18hush: convert exp/ro/local parameters to bitfields in one flag paramDenys Vlasenko
2017-07-17hush: HUSH_READONLY depends on HUSHDenys Vlasenko
2017-07-17hush: forgot to emit error on (failing) second "readonly VAR=VAL"Denys Vlasenko
2017-07-17hush: smaller code in !READONLY configsDenys Vlasenko
2017-07-17hush: implement "readonly" builtinDenys Vlasenko
2017-07-17ash: more general format ${var:EXPR:EXPR}Denys Vlasenko
2017-07-17ash: "you disabled math" is wrong: user did not disable it, builder of ash didDenys Vlasenko