aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* ash: [VAR] Initialise OPTIND after importing environmentDenys Vlasenko2016-09-301-1/+3
* ash: [BUILTIN] Merge SKIPFUNC/SKIPFILE and only clear SKIPFUNC when leaving d...Denys Vlasenko2016-09-301-3/+2
* ash: Avoid overflow for very long variable nameDenys Vlasenko2016-09-301-1/+1
* ash: [VAR] Sanitise environment variable names on entryDenys Vlasenko2016-09-301-1/+2
* ash: [EVAL] Avoid using undefined handlerDenys Vlasenko2016-09-301-2/+2
* ash: remove dead stores and unused variablesDenys Vlasenko2016-09-301-3/+1
* ash: [MEMALLOC] Add pushstackmarkDenys Vlasenko2016-09-301-34/+19
* ash: fix arithmetic closing )) split by backslash-newlineDenys Vlasenko2016-09-291-1/+2
* ash: [PARSER] Handle backslash newlines properly after dollar signDenys Vlasenko2016-09-291-15/+29
* ash: input: Allow two consecutive calls to pungetcDenys Vlasenko2016-09-291-34/+43
* ash: jobs: Don't attempt to access job table for job %0Denys Vlasenko2016-09-291-1/+1
* ash: [EVAL] Make eval with empty arguments return 0Denys Vlasenko2016-09-291-36/+26
* ash: [EVAL] Fix use-after-free in dotrap/evalstringDenys Vlasenko2016-09-281-3/+7
* ash: Remove unused EV_BACKCMD flagDenys Vlasenko2016-09-281-1/+0
* ash: eval: Return status in eval functionsDenys Vlasenko2016-09-281-55/+81
* ash: in heredoc code, fix access past the end of allocated memory. Closes 9276Denys Vlasenko2016-09-251-14/+18
* ash: fix handling of NULs in $'abc\000def\x00asd'. Closes 9286Denys Vlasenko2016-09-251-5/+13
* ash: use glob() from libcDenys Vlasenko2016-09-211-11/+91
* ash: fix handling of bashism $'xxx' with high-bit chars. Closes 9236Denys Vlasenko2016-09-201-0/+3
* ash: exit after subshell error when errexit option is setRostislav Skudnov2016-09-171-0/+2
* fix "aloc" -> "alloc" typosDenys Vlasenko2016-09-171-1/+1
* ash: add a FIXME for bug 9246Denys Vlasenko2016-09-171-0/+9
* *: placate some compile warnings on OSXDenys Vlasenko2016-09-011-2/+2
* ash: fix handling of ${VAR: -2}Denys Vlasenko2016-07-251-4/+8
* ash: do not leave SIGQUIT ignored on "exec CMD"Denys Vlasenko2016-07-161-1/+14
* *: slap on a few ALIGN1/2s where appropriateDenys Vlasenko2016-04-221-3/+3
* ash: bash-compatible $'...' shouldn't expand in double quotesRon Yorston2016-04-151-1/+1
* Rewrite iteration through applet names to save a few bytesRon Yorston2016-04-151-1/+2
* ash: fix corruption of ${#var} if $var contains UTF-8 charactersRon Yorston2016-03-221-0/+2
* Fix compiling with musl's utmp stubsKylie McClain2016-02-011-1/+0
* ash: suppress a compilation warningCristian Ionescu-Idbohrn2016-01-021-1/+1
* ash: add support for bash 'function' keywordRon Yorston2015-11-041-31/+70
* ash: allow popredir to be called if the stack is emptyRon Yorston2015-10-301-1/+1
* ash: fix EXEXEC status clobberingRon Yorston2015-10-301-1/+1
* ash: simplify EOF/newline handling in list parserRon Yorston2015-10-291-34/+29
* Revert "ash: fix a SEGV case in an invalid heredoc" xxxRon Yorston2015-10-291-11/+4
* ash: fix error during recursive processing of here documentRon Yorston2015-10-291-2/+3
* ash: only allow local variables in functionsRon Yorston2015-10-291-0/+3
* ash: respect -p flag when command builtin is run with -v/-VRon Yorston2015-10-291-4/+8
* ash: fix command -- crashDenys Vlasenko2015-10-291-3/+4
* ash: save a few bytes in code to parse case statementsRon Yorston2015-10-291-4/+2
* ash: allow newline after variable name in for loopRon Yorston2015-10-291-2/+2
* tidy up strtok useDenys Vlasenko2015-10-231-1/+1
* ash: shrink umask codeDenys Vlasenko2015-10-101-9/+7
* ash: "you have mail" should ignore first change in mtimeDenys Vlasenko2015-10-091-1/+2
* ash: simplify "you have mail" codeDenys Vlasenko2015-10-091-14/+11
* ash: make dowait() a bit more readable. Logic is unchangedDenys Vlasenko2015-10-091-31/+27
* build system: -fno-builtin-printfDenys Vlasenko2015-10-071-1/+1
* ash: use a more typical form of "print four octal digits" formatDenys Vlasenko2015-10-071-1/+1
* libbb: more compact API for bb_parse_mode()Denys Vlasenko2015-10-071-1/+2