aboutsummaryrefslogtreecommitdiff
path: root/shell
AgeCommit message (Expand)Author
2017-01-09hush: make echo builtin optionalDenys Vlasenko
2017-01-09ash: fix a bug in argv restoration after sourcing a fileDenys Vlasenko
2017-01-09hush: fix a bug in argv restoration after sourcing a fileDenys Vlasenko
2017-01-09hush: global_args_malloced is used only if set builtin is enabledDenys Vlasenko
2017-01-09hush: fix 'defined but not used' warningDenys Vlasenko
2017-01-09hush: remove redundand test for ENABLE_HUSH_JOBDenys Vlasenko
2017-01-09hush: fix kill builtin without jobs supportDenys Vlasenko
2017-01-09typo fixDenys Vlasenko
2017-01-08hush: conditionalize print_escaped() on EXPORT || TRAPDenys Vlasenko
2017-01-08hush: make memleak builtin optionalDenys Vlasenko
2017-01-08hush: make export builtin optionalDenys Vlasenko
2017-01-08hush: make umask builtin optionalDenys Vlasenko
2017-01-08hush: make set/unset builtins optionalDenys Vlasenko
2017-01-08hush: make read and trap builtins optionalDenys Vlasenko
2017-01-08hush: kill builtin and kill %jobspec supportDenys Vlasenko
2017-01-08hush: support %%, %+ and % jobspec (meaning "current job")Denys Vlasenko
2017-01-07ash: fix open fds leaking in redirects. Closes 9561Denys Vlasenko
2017-01-06ash: explicltly group ash optionsKang-Che Sung
2017-01-04shell: clarify help text of CONFIG_{SH,BASH}_IS_* optionsKang-Che Sung
2017-01-03hush: correct exitcode for unterminated ')' - exitcode2.tests testcaseDenys Vlasenko
2017-01-03ash: fix error code regressionRon Yorston
2016-12-23Make it possible to select "sh" and "bash" aliases without selecting ash or hushDenys Vlasenko
2016-12-22shell: move "config" blocks above their use in coditional includesDenys Vlasenko
2016-12-22Tweak some config defaults; fix MODPROBE_SMALL ordering in "make config"Denys Vlasenko
2016-12-21ash: clarify uclibc glob() bug in commentDenys Vlasenko
2016-12-21ash: error out if ASH_INTERNAL_GLOB is not selected on uClibcDenys Vlasenko
2016-12-12ash: fix signed char expansion bugDenys Vlasenko
2016-12-12shell: suppress "unused var/func" warnings on some configsDenys Vlasenko
2016-11-25ash,hush: make ^C in interactive mode visually much closer to bash behaviorDenys Vlasenko
2016-11-24ash,hush: ^C from command line should set $? to 128+SIGINTDenys Vlasenko
2016-11-23test: make [ and [[ forms individually selectableDenys Vlasenko
2016-11-08hush: make getch/peek functions directly calledDenys Vlasenko
2016-11-08hush: renumber PIPE_foo, make PIPE_SEQ = 0Denys Vlasenko
2016-11-08hush: small optimization in run_listDenys Vlasenko
2016-11-08hush: deindent large block of code, no code changesDenys Vlasenko
2016-11-08hush: simplify insert_bg_jobsDenys Vlasenko
2016-11-08hush: make "wait %1" less likely to play with signal maskDenys Vlasenko
2016-11-08hush: rework "wait %jobspec" to work in non-interactive shells tooDenys Vlasenko
2016-11-07hush: "wait $!; echo $?" should return 127 if $! already exitedDenys Vlasenko
2016-11-07hush: implement "wait %jobspec"Denys Vlasenko
2016-11-07hush: factor out %jobspec parsingDenys Vlasenko
2016-11-07hush: comment fixDenys Vlasenko
2016-11-07hush: do not allow sh -c '{ echo boo }'Denys Vlasenko
2016-11-04hush: case logic for setting $? was still wrongDenys Vlasenko
2016-11-04hush: non-matching "case" statement sets $? to 0Denys Vlasenko
2016-11-04hush: allow { cmd } to not be terminated by semicolon in some casesDenys Vlasenko
2016-11-04ash: fix "duplicate local" code (forgot to re-enable interrupts)Denys Vlasenko
2016-11-03ash: while (!got_sig) pause() is not reliable, use sigsuspend()Denys Vlasenko
2016-10-30ash: if using libc glob(), skip it if no metachars are in wordDenys Vlasenko
2016-10-30ash: fix bit-rotten debug infrastructureDenys Vlasenko