aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* ash,hush: set exit code 127 in "sh /does/not/exist" caseDenys Vlasenko2016-10-251-2/+1
* ash: explain EXP_REDIR and why we (dont) glob redir filenamesDenys Vlasenko2016-10-241-0/+11
* ash: return exit status of nofork appletsRon Yorston2016-10-241-1/+1
* ash: all blocks in function node copying must be SHELL_ALIGNedDenys Vlasenko2016-10-071-3/+3
* ash: get rid of two global data variablesDenys Vlasenko2016-10-071-51/+48
* ash: comment out free(p) just before _exit, tweak some outdated commentsDenys Vlasenko2016-10-071-16/+5
* ash: [PARSER] Add nlprompt/nlnoprompt helpersDenys Vlasenko2016-10-021-19/+23
* whitespace fixesDenys Vlasenko2016-10-021-1/+1
* sh: do not print empty line at the end of "help" outputDenys Vlasenko2016-10-021-1/+1
* ash: undo "tokname hack"Denys Vlasenko2016-10-021-41/+83
* ash: placate gcc: "warning: ! is only applied to the left hand side of =="Denys Vlasenko2016-10-021-1/+1
* ash: fix globbing bugs when using glibc glob()Denys Vlasenko2016-10-021-7/+22
* ash: style fixesDenys Vlasenko2016-10-021-8/+16
* ash: support "--" in "source" builtinDenys Vlasenko2016-10-021-12/+18
* ash: expand: Fixed "$@" expansion when EXP_FULL is falseDenys Vlasenko2016-10-021-15/+13
* test: memory leak: free group id listDenys Vlasenko2016-10-021-7/+5
* ash: fix return_in_trap1.tests failureDenys Vlasenko2016-10-011-23/+28
* ash: [EXPAND] Optimise nulonly away and just use quoted as beforeDenys Vlasenko2016-10-011-12/+11
* ash: [EXPAND] Do not split quoted VSLENGTH and VSTRIMDenys Vlasenko2016-10-011-30/+22
* ash: [EXPAND] Split unquoted $@/$* correctly when IFS is set but emptyDenys Vlasenko2016-10-011-5/+9
* ash: fix "return N" not setting $? in loop conditionalsDenys Vlasenko2016-10-011-27/+29
* ash: [ERROR] Set exitstatus in onintDenys Vlasenko2016-10-011-6/+9
* ash: [EVAL] Revert SKIPEVAL into EXEXITDenys Vlasenko2016-10-011-14/+6
* ash: [EVAL] Pass EV_TESTED into evalcmdDenys Vlasenko2016-10-011-14/+19
* ash: fix a thinko in the last commitDenys Vlasenko2016-10-011-1/+1
* ash: make internal globbing code selectable from configDenys Vlasenko2016-10-011-32/+50
* ash: explain how "command" is handled, and shrink it a bitDenys Vlasenko2016-10-011-40/+48
* 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