aboutsummaryrefslogtreecommitdiff
path: root/shell
AgeCommit message (Expand)Author
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
2017-07-17hush: small fix to last commitDenys Vlasenko
2017-07-17hush: support ${VAR:N:-M}Denys Vlasenko
2017-07-17shells: expand TODO comments, no code changesDenys Vlasenko
2017-07-16hush: fix "cmd1 && cmd2 &" handling on NOMMUDenys Vlasenko
2017-07-15shell: and_or_and_backgrounding.tests is no longer "UNFIXED BUG"Denys Vlasenko
2017-07-15hush: fix and_or_and_backgrounding.tests failureDenys Vlasenko
2017-07-15ash: protect WIFSTOPPED use with #if JOBSJohannes Schindelin
2017-07-14hush: make "wait %1" work even if the job is deadDenys Vlasenko
2017-07-14hush: remove superfluous comparisonDenys Vlasenko
2017-07-14hush: add support for "set -e"Denys Vlasenko
2017-07-10hush: add TODO for "set -e"Denys Vlasenko
2017-07-10hush: simplify insert_job_into_table() a bitDenys Vlasenko
2017-07-10hush: rename a few functionsDenys Vlasenko
2017-07-08hush: explain why wait5.tests is failingDenys Vlasenko
2017-07-07hush: fix "(sleep 1; exit 3) & sleep 2; echo $?; wait $!; echo $?"Denys Vlasenko