aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
AgeCommit message (Expand)Author
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
2017-07-07hush: fix two redirection testcase failuresDenys Vlasenko
2017-07-07main: fix the case where user has "halt" as login shell. Closes 9986Denys Vlasenko
2017-07-06hush: add a TODO about redir3.tests failureDenys Vlasenko
2017-07-06hush: Print error messages on shift -1Denys Vlasenko
2017-07-06hush: implement negative start in the ${v: -n[:m]} idiomDenys Vlasenko
2017-07-06hush: "adopt" ash signal4.testsDenys Vlasenko
2017-07-06hush: correctly handle quoting in "case" even if !BASH_PATTERN_SUBSTDenys Vlasenko
2017-07-05hush: fix quoted_punct.tests failureDenys Vlasenko
2017-07-03fixes for bugs found by make_single_applets.shDenys Vlasenko
2017-07-03msh: delete this appletDenys Vlasenko
2017-07-03randomconfig fixesDenys Vlasenko
2017-05-22ash,hush: fix SIGCHLD interrupting read builtinDenys Vlasenko
2017-04-17Spelling fixes in comments, documentation, tests and examplesDenys Vlasenko
2017-01-29*: add comment about APPLET_ODDNAME formatDenys Vlasenko
2017-01-11hush: reinstate [[ builtinDenys Vlasenko
2017-01-11hush: split bash compatible extensions into separate defines. No code changesKang-Che Sung
2017-01-10hush: shorten output of "help" builtinDenys Vlasenko
2017-01-10hush: reorder builtins (cd and pwd ought to be close, etc), no code changesDenys Vlasenko
2017-01-10shells: make hush test optional, rename ASH_BUILTIN_foo -> ASH_fooDenys Vlasenko
2017-01-10Big cleanup in config help and descriptionDenys Vlasenko
2017-01-09hush: make echo builtin optionalDenys 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-03hush: correct exitcode for unterminated ')' - exitcode2.tests testcaseDenys Vlasenko
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-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-08hush: make getch/peek functions directly calledDenys Vlasenko