aboutsummaryrefslogtreecommitdiff
path: root/shell
AgeCommit message (Expand)Author
2019-04-28ash,hush: ulimit: add -i RLIMIT_SIGPENDING, -q RLIMIT_MSGQUEUEDenys Vlasenko
2019-04-28ash,hush: bash compat for ulimit: reorder to matchDenys Vlasenko
2019-04-27ash,hush: bash compat for ulimit: -w => -x, -p => -uDenys Vlasenko
2019-04-27ash,hush: fix ulimit to be more bash-compat, closes 11791Denys Vlasenko
2019-04-19httpd: use full size of iobuf[] when piping CGI dataDenys Vlasenko
2019-04-19ash: catch error in arithmetic expansion in PS1Ron Yorston
2019-04-19ash: prevent error in backquotes in PS1 from exiting shellRon Yorston
2019-04-16ash: add bash-compatible EPOCH variablesRon Yorston
2019-04-16ash: an unset dynamic variable should not be dynamicRon Yorston
2019-04-16hush: add bash-compatible EPOCH variablesRon Yorston
2019-04-02ash: distinguish 'wait -n' from other bashismsRon Yorston
2019-03-27hush: fix "wait -n" to wait for a _job_, not a _process_Denys Vlasenko
2019-03-27ash: add "wait -n" bashismDenys Vlasenko
2019-03-26hush: add "wait -n" bashismDenys Vlasenko
2019-02-25ash: eval: avoid leaking memory associated with redirections. Closes 7748Ron Yorston
2018-12-28config: update size informationDenys Vlasenko
2018-12-27randomconfig fixesDenys Vlasenko
2018-12-08inetd: suppress aliasing warningDenys Vlasenko
2018-12-08suppress gcc 8 aliasing warningsDenys Vlasenko
2018-11-27hush: allow hush to run embedded scriptsRon Yorston
2018-11-20ash: reset tokpushback before prompting while parsing heredocChristoph Schulz
2018-11-17Treat custom and applet scripts as appletsRon Yorston
2018-11-16ash: ensure variables are fully initialised when unsetRon Yorston
2018-11-14hush: correct description for HUSH_TICK config optionRon Yorston
2018-11-06ash: minor fixesRon Yorston
2018-11-01ash: fix thinko in last commitDenys Vlasenko
2018-11-01ash: in tryexec(), ensure we don't try to run embedded scripts as appletsRon Yorston
2018-11-01ash: recognize embedded scripts in SH_STANDALONE modeRon Yorston
2018-11-01claenups for previous commitDenys Vlasenko
2018-11-01ash: allow shell scripts to be embedded in the binaryDenys Vlasenko
2018-08-14hush: tweak comment, no code changesDenys Vlasenko
2018-08-11hush: add a comment on how globbing (should) workDenys Vlasenko
2018-08-07ash: expand: Do not quote backslashes in unquoted parameter expansionDenys Vlasenko
2018-08-05hush: adopt ash's quote_in_varexp1.testsDenys Vlasenko
2018-08-05ash: exec: Return 126 on most errors in shellexecDenys Vlasenko
2018-08-05ash: eval: Restore input files in evalcommandDenys Vlasenko
2018-08-05ash: parser: Fix parsing of ${}Denys Vlasenko
2018-08-05ash,hush: fold shell_builtin_read() way-too-many params into a struct paramDenys Vlasenko
2018-08-05hush: set IFS to default on startupDenys Vlasenko
2018-08-05hush: fix fallout from FILE->HFILE conversionDenys Vlasenko
2018-08-05ash: expand: Fix ghost fields with unquoted $@/$*Denys Vlasenko
2018-08-05ash: var: Set IFS to fixed value at start timeDenys Vlasenko
2018-08-05ash: eval: Variable assignments on functions are no longer persistentDenys Vlasenko
2018-08-04ash,hush: properly handle ${v//pattern/repl} if pattern starts with /Denys Vlasenko
2018-07-31hush: speed up ${var:+ARG} for literal ARGsDenys Vlasenko
2018-07-28hush: fix another case where empty "for" wasn't setting exitcode to 0Denys Vlasenko
2018-07-28hush: disable debug_indent increment/decrement for HUSH_DEBUG < 2 buildsDenys Vlasenko
2018-07-28hush: make "set -x" output don't redirectable when fd#2 redirectedDenys Vlasenko
2018-07-27hush: make "set -x" output closer to bashDenys Vlasenko
2018-07-27hush: fix "set -x" output prefix overlapping for v="..`cmd`.." caseDenys Vlasenko