aboutsummaryrefslogtreecommitdiff
path: root/shell (follow)
Commit message (Expand)AuthorAgeFilesLines
* ash,hush: ulimit: add -i RLIMIT_SIGPENDING, -q RLIMIT_MSGQUEUEDenys Vlasenko2019-04-281-3/+19
* ash,hush: bash compat for ulimit: reorder to matchDenys Vlasenko2019-04-281-72/+53
* ash,hush: bash compat for ulimit: -w => -x, -p => -uDenys Vlasenko2019-04-271-12/+16
* ash,hush: fix ulimit to be more bash-compat, closes 11791Denys Vlasenko2019-04-271-84/+181
* httpd: use full size of iobuf[] when piping CGI dataDenys Vlasenko2019-04-191-3/+0
* ash: catch error in arithmetic expansion in PS1Ron Yorston2019-04-191-12/+20
* ash: prevent error in backquotes in PS1 from exiting shellRon Yorston2019-04-191-1/+3
* ash: add bash-compatible EPOCH variablesRon Yorston2019-04-161-21/+56
* ash: an unset dynamic variable should not be dynamicRon Yorston2019-04-161-0/+4
* hush: add bash-compatible EPOCH variablesRon Yorston2019-04-161-0/+20
* ash: distinguish 'wait -n' from other bashismsRon Yorston2019-04-021-7/+8
* hush: fix "wait -n" to wait for a _job_, not a _process_Denys Vlasenko2019-03-271-9/+22
* ash: add "wait -n" bashismDenys Vlasenko2019-03-271-6/+47
* hush: add "wait -n" bashismDenys Vlasenko2019-03-261-1/+17
* ash: eval: avoid leaking memory associated with redirections. Closes 7748Ron Yorston2019-02-251-10/+4
* config: update size informationDenys Vlasenko2018-12-283-3/+3
* randomconfig fixesDenys Vlasenko2018-12-271-1/+1
* inetd: suppress aliasing warningDenys Vlasenko2018-12-082-2/+2
* suppress gcc 8 aliasing warningsDenys Vlasenko2018-12-082-2/+2
* hush: allow hush to run embedded scriptsRon Yorston2018-11-273-15/+31
* ash: reset tokpushback before prompting while parsing heredocChristoph Schulz2018-11-201-0/+1
* Treat custom and applet scripts as appletsRon Yorston2018-11-171-15/+4
* ash: ensure variables are fully initialised when unsetRon Yorston2018-11-161-3/+2
* hush: correct description for HUSH_TICK config optionRon Yorston2018-11-141-1/+1
* ash: minor fixesRon Yorston2018-11-061-1/+5
* ash: fix thinko in last commitDenys Vlasenko2018-11-011-5/+1
* ash: in tryexec(), ensure we don't try to run embedded scripts as appletsRon Yorston2018-11-011-0/+8
* ash: recognize embedded scripts in SH_STANDALONE modeRon Yorston2018-11-011-0/+12
* claenups for previous commitDenys Vlasenko2018-11-011-8/+3
* ash: allow shell scripts to be embedded in the binaryDenys Vlasenko2018-11-011-1/+32
* hush: tweak comment, no code changesDenys Vlasenko2018-08-141-4/+4
* hush: add a comment on how globbing (should) workDenys Vlasenko2018-08-111-0/+35
* ash: expand: Do not quote backslashes in unquoted parameter expansionDenys Vlasenko2018-08-075-6/+32
* hush: adopt ash's quote_in_varexp1.testsDenys Vlasenko2018-08-052-0/+4
* ash: exec: Return 126 on most errors in shellexecDenys Vlasenko2018-08-051-4/+4
* ash: eval: Restore input files in evalcommandDenys Vlasenko2018-08-051-2/+12
* ash: parser: Fix parsing of ${}Denys Vlasenko2018-08-051-2/+3
* ash,hush: fold shell_builtin_read() way-too-many params into a struct paramDenys Vlasenko2018-08-054-84/+64
* hush: set IFS to default on startupDenys Vlasenko2018-08-051-11/+10
* hush: fix fallout from FILE->HFILE conversionDenys Vlasenko2018-08-051-2/+8
* ash: expand: Fix ghost fields with unquoted $@/$*Denys Vlasenko2018-08-055-12/+36
* ash: var: Set IFS to fixed value at start timeDenys Vlasenko2018-08-051-0/+1
* ash: eval: Variable assignments on functions are no longer persistentDenys Vlasenko2018-08-056-10/+5
* ash,hush: properly handle ${v//pattern/repl} if pattern starts with /Denys Vlasenko2018-08-046-1/+28
* hush: speed up ${var:+ARG} for literal ARGsDenys Vlasenko2018-07-311-27/+31
* hush: fix another case where empty "for" wasn't setting exitcode to 0Denys Vlasenko2018-07-285-1/+13
* hush: disable debug_indent increment/decrement for HUSH_DEBUG < 2 buildsDenys Vlasenko2018-07-281-2/+2
* hush: make "set -x" output don't redirectable when fd#2 redirectedDenys Vlasenko2018-07-281-45/+84
* hush: make "set -x" output closer to bashDenys Vlasenko2018-07-271-18/+60
* hush: fix "set -x" output prefix overlapping for v="..`cmd`.." caseDenys Vlasenko2018-07-271-14/+20