aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c
AgeCommit message (Expand)Author
2017-07-31ash: align --login code with dashDenys Vlasenko
2017-07-31ash: fix display of ">&-" redirect in job stringsDenys Vlasenko
2017-07-31ash,hush: ">&10" redirects to script/tty fds should not workDenys Vlasenko
2017-07-31ash: significant overhaul of redirect saving logicDenys Vlasenko
2017-07-31ash: remove REDIR_SAVEFD2Denys Vlasenko
2017-07-29ash: if !ENABLE_ASH_EXPAND_PRMT, disable PSSYNTAX codeDenys Vlasenko
2017-07-29ash: [REDIR] Fix popredir on abnormal exit from built-inDenys Vlasenko
2017-07-29ash: [PARSER] Add FAKEEOFMARK for expandstrDenys Vlasenko
2017-07-29ash: [PARSER] Removed noexpand/length check on eofmarkDenys Vlasenko
2017-07-29ash: "Undo all redirections" comment is wrong, delete itDenys Vlasenko
2017-07-29ash: make tryexec(cmd) parameter const charDenys Vlasenko
2017-07-28ash: support platforms that don't have '%m' printf specifierRon Yorston
2017-07-28ash: less hackish implementation of evaltreenr()Denys Vlasenko
2017-07-26ash: force inlining of a trivial functionDenys Vlasenko
2017-07-26ash: revert previous implementation of "A=1 A=2 B=$A cmd" codeDenys Vlasenko
2017-07-26ash: [VAR] Fix loss of variables when hash collidesDenys Vlasenko
2017-07-26ash: [VAR] Do not poplocalvars prematurely on regular utilitiesDenys Vlasenko
2017-07-26ash: [VAR] Fix poplocalvar on abnormal exit from functionDenys Vlasenko
2017-07-26ash: [VAR] Replace cmdenviron with localvarsDenys Vlasenko
2017-07-26ash: [VAR] Fix poplocalvar leakDenys Vlasenko
2017-07-26ash: [VAR] Add localvars nestingDenys Vlasenko
2017-07-26ash: alloc slightly smaller buffer in cvtnum(); faster unsetvar()Denys Vlasenko
2017-07-26ash: fix redir_leak.tests if STANDALONE=yDenys Vlasenko
2017-07-25ash: [SHELL] Optimize dash -c "command" to avoid a forkDenys Vlasenko
2017-07-25ash: allow "trap NUM [SIG]..." syntaxDenys Vlasenko
2017-07-25ash: [REDIR] Replace GPL noclobberopen code with the FreeBSD versionDenys Vlasenko
2017-07-25ash: sync up with dash with respect to redirection escapingDenys Vlasenko
2017-07-25ash: [VAR] Move unsetvar functionality into setvareqDenys Vlasenko
2017-07-24ash: fix comment, no code changesDenys Vlasenko
2017-07-23ash: fix for last commitDenys Vlasenko
2017-07-23ash: use mempcpy() in more placesDenys Vlasenko
2017-07-21ash: use mempcpy() where appropriateDenys Vlasenko
2017-07-21ash: improve set -x to quote strings as necessaryDenys Vlasenko
2017-07-21config: deindent all help textsDenys Vlasenko
2017-07-18ash: remove contradicting size info in config helpDenys Vlasenko
2017-07-18Update menuconfig items with approximate applet sizesDenys Vlasenko
2017-07-17ash: more general format ${var:EXPR:EXPR}Denys Vlasenko
2017-07-17ash: "you disabled math" is wrong: user did not disable it, builder of ash didDenys Vlasenko
2017-07-17shells: expand TODO comments, no code changesDenys Vlasenko
2017-07-15ash: protect WIFSTOPPED use with #if JOBSJohannes Schindelin
2017-07-07main: fix the case where user has "halt" as login shell. Closes 9986Denys Vlasenko
2017-07-05hush: fix quoted_punct.tests failureDenys Vlasenko
2017-07-05ash: fix escaping of a few characters (broken by last commits)Denys Vlasenko
2017-07-05ash: tweak in commentDenys Vlasenko
2017-07-05ash: note which versions of glibc exhibit "rho bug"Denys Vlasenko
2017-07-05ash: fix matching of unicode greek letter rho (cf 81) and similar casesDenys Vlasenko
2017-07-01ash: fix $HOME/.profile reading if !ASH_EXPAND_PRMT, take 2Denys Vlasenko
2017-07-01ash: fix 'trap - 65'Denys Vlasenko
2017-06-27ash: fix $HOME/.profile reading if !ASH_EXPAND_PRMTDenys Vlasenko
2017-05-26ash: fix incorrect path in describe_commandYoufu Zhang