aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
AgeCommit message (Expand)Author
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
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-10-28hush: fix "(sleep 1; exit 3) & sleep 2; echo $?; wait $!; echo $?"Denys Vlasenko
2016-10-28hush: fix "wait PID"Denys Vlasenko
2016-10-27ash: [SHELL] Expand ENV before using itDenys Vlasenko
2016-10-25ash,hush: set exit code 127 in "sh /does/not/exist" caseDenys Vlasenko
2016-10-03hush: add commented-out debug printouts in "memleak" built-inDenys Vlasenko
2016-10-03hush: fix a memory corruption when exported variable is modifiedDenys Vlasenko