summaryrefslogtreecommitdiff
AgeCommit messageAuthorFilesLines
2016-11-13dnsdomainname: split it from "hostname", make it independently selectableDenys Vlasenko4-11/+24
2016-11-11tar: handle pax-encoded utf8 filenames and link names. Closes 9406Denys Vlasenko3-7/+48
2016-11-08hush: make getch/peek functions directly calledDenys Vlasenko1-27/+24
2016-11-08hush: renumber PIPE_foo, make PIPE_SEQ = 0Denys Vlasenko1-5/+4
2016-11-08hush: small optimization in run_listDenys Vlasenko1-7/+8
2016-11-08hush: deindent large block of code, no code changesDenys Vlasenko1-58/+57
2016-11-08hush: simplify insert_bg_jobsDenys Vlasenko1-10/+8
2016-11-08hush: make "wait %1" less likely to play with signal maskDenys Vlasenko1-8/+7
2016-11-07hush: rework "wait %jobspec" to work in non-interactive shells tooDenys Vlasenko9-13/+28
2016-11-07hush: "wait $!; echo $?" should return 127 if $! already exitedDenys Vlasenko1-4/+5
2016-11-07hush: implement "wait %jobspec"Denys Vlasenko1-29/+88
2016-11-07hush: factor out %jobspec parsingDenys Vlasenko1-11/+22
2016-11-07hush: comment fixDenys Vlasenko1-2/+2
2016-11-07hush: do not allow sh -c '{ echo boo }'Denys Vlasenko1-2/+4
2016-11-04cpio: add ownership (-R) test casesAaro Koskinen1-0/+24
2016-11-04hush: case logic for setting $? was still wrongDenys Vlasenko1-4/+12
2016-11-04hush: non-matching "case" statement sets $? to 0Denys Vlasenko1-0/+2
2016-11-04hush: allow { cmd } to not be terminated by semicolon in some casesDenys Vlasenko5-6/+58
2016-11-04ash: fix "duplicate local" code (forgot to re-enable interrupts)Denys Vlasenko1-3/+20
2016-11-04comment and readme updatesDenys Vlasenko2-1/+10
2016-11-03su: expand help; simplify passing of -c CMD to run_shell()Denys Vlasenko6-25/+45
2016-11-03loadfont: 32k size limit is not enoughDenys Vlasenko1-2/+4
2016-11-03ash: while (!got_sig) pause() is not reliable, use sigsuspend()Denys Vlasenko1-5/+6
2016-10-31man: remove -Tascii from nroff invocationDenys Vlasenko1-2/+4
2016-10-31man: make width selection more thorough; explain how to override itDenys Vlasenko2-16/+44
2016-10-30man: allow nroff and tbl commands be overridden; unmangle writing to filesDenys Vlasenko1-25/+79
2016-10-30ash: if using libc glob(), skip it if no metachars are in wordDenys Vlasenko1-0/+15
2016-10-30ash: fix bit-rotten debug infrastructureDenys Vlasenko1-14/+7
2016-10-30ash: make popfile() anfter popallfiles() safeDenys Vlasenko1-2/+5
2016-10-28hush: fix "(sleep 1; exit 3) & sleep 2; echo $?; wait $!; echo $?"Denys Vlasenko1-4/+14
2016-10-28hush: fix "wait PID"Denys Vlasenko7-174/+246
2016-10-28ash: use pause(), not sigsuspend(), in wait builtinDenys Vlasenko1-26/+31
2016-10-28ash: fix interactive "command eval STRING" exiting on errors.Denys Vlasenko3-1/+33
2016-10-27ash: [JOBS] Fix dowait signal raceDenys Vlasenko1-13/+70
2016-10-27ash: [SIGNAL] Remove EXSIGDenys Vlasenko1-64/+23
2016-10-27ash: open-code blocking_dowait_with_raise_on_sig()Denys Vlasenko1-18/+7
2016-10-27ash: return to DOWAIT_* constants similar to dash, no logic changesDenys Vlasenko1-11/+16
2016-10-27ash: delete leftovers from "simplify EOF/newline handling in list parser" commitDenys Vlasenko1-4/+0
2016-10-27ash: [EXPAND] Fix ifsfirst/ifslastp leakDenys Vlasenko1-9/+20
2016-10-27ash: move ifsbreakup() and ifsfree() upDenys Vlasenko1-110/+110
2016-10-27ash: partially sync with dash on "fork if traps are set" logicDenys Vlasenko1-5/+6
2016-10-27ash: [SHELL] Expand ENV before using itDenys Vlasenko2-10/+8
2016-10-27ash: comment tweaks, no code changesDenys Vlasenko1-7/+12
2016-10-26ash: optimize tryexec(): avoid one allocationDenys Vlasenko1-20/+11
2016-10-26ash: [CD] Lookup PWD after going through CDPATHDenys Vlasenko1-10/+10
2016-10-26ash: [MEMALLOC] Made grabstackblock an inline wrapper for stallocDenys Vlasenko1-4/+2
2016-10-26ash: [VAR] Remove setvarsafeDenys Vlasenko1-50/+20
2016-10-26ash: use shellparam.optind/optoff in getopts() directly, not through pointersDenys Vlasenko1-12/+14
2016-10-26ash: [PARSER] Size optimisations in parameter expansion parserDenys Vlasenko1-10/+7
2016-10-26ash: [PARSER] Recognise here-doc delimiters terminated by EOFDenys Vlasenko9-3/+29
[prev] [next]