aboutsummaryrefslogtreecommitdiff
path: root/shell
AgeCommit message (Expand)Author
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
2016-10-30ash: make popfile() anfter popallfiles() safeDenys 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-28ash: use pause(), not sigsuspend(), in wait builtinDenys Vlasenko
2016-10-28ash: fix interactive "command eval STRING" exiting on errors.Denys Vlasenko
2016-10-27ash: [JOBS] Fix dowait signal raceDenys Vlasenko
2016-10-27ash: [SIGNAL] Remove EXSIGDenys Vlasenko
2016-10-27ash: open-code blocking_dowait_with_raise_on_sig()Denys Vlasenko
2016-10-27ash: return to DOWAIT_* constants similar to dash, no logic changesDenys Vlasenko
2016-10-27ash: delete leftovers from "simplify EOF/newline handling in list parser" commitDenys Vlasenko
2016-10-27ash: [EXPAND] Fix ifsfirst/ifslastp leakDenys Vlasenko
2016-10-27ash: move ifsbreakup() and ifsfree() upDenys Vlasenko
2016-10-27ash: partially sync with dash on "fork if traps are set" logicDenys Vlasenko
2016-10-27ash: [SHELL] Expand ENV before using itDenys Vlasenko
2016-10-27ash: comment tweaks, no code changesDenys Vlasenko
2016-10-26ash: optimize tryexec(): avoid one allocationDenys Vlasenko
2016-10-26ash: [CD] Lookup PWD after going through CDPATHDenys Vlasenko
2016-10-26ash: [MEMALLOC] Made grabstackblock an inline wrapper for stallocDenys Vlasenko
2016-10-26ash: [VAR] Remove setvarsafeDenys Vlasenko
2016-10-26ash: use shellparam.optind/optoff in getopts() directly, not through pointersDenys Vlasenko
2016-10-26ash: [PARSER] Size optimisations in parameter expansion parserDenys Vlasenko
2016-10-26ash: [PARSER] Recognise here-doc delimiters terminated by EOFDenys Vlasenko
2016-10-26ash: [PARSER] Fix parsing of ${##1}Denys Vlasenko
2016-10-26ash: [REDIR] Remove redundant CLOEXEC callsDenys Vlasenko
2016-10-26ash: [REDIR] Replace copyfd by savefd and use dup2 elsewhereDenys Vlasenko
2016-10-26typo fixesDenys Vlasenko
2016-10-26ash: [BUILTIN] Treat OPTIND=0 in the same way as OPTIND=1Denys Vlasenko
2016-10-26ash: [PARSER] Report substition errors at expansion timeDenys Vlasenko