aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c
AgeCommit message (Expand)Author
2016-10-26ash: [REDIR] Remove redundant CLOEXEC callsDenys Vlasenko
2016-10-26ash: [REDIR] Replace copyfd by savefd and use dup2 elsewhereDenys Vlasenko
2016-10-26ash: [BUILTIN] Treat OPTIND=0 in the same way as OPTIND=1Denys Vlasenko
2016-10-26ash: [PARSER] Report substition errors at expansion timeDenys Vlasenko
2016-10-25ash: [REDIR] Move null redirect checks into callerDenys Vlasenko
2016-10-25ash: [PARSER] Do not show prompts in expandstrDenys Vlasenko
2016-10-25ash: [EXPAND] Removed herefd hackDenys Vlasenko
2016-10-25ash: [SHELL] Move flushall to the point just before _exitDenys Vlasenko
2016-10-25ash: [EVAL] Let funcnode refer to a function definition, not its first commandDenys Vlasenko
2016-10-25ash: [REDIR] Remove EMFILE special caseDenys Vlasenko
2016-10-25ash: [EVAL] Check exit for eval NSUBSHELLDenys Vlasenko
2016-10-25ash: add comment explaining "set -e; $(cmd)" discrepancyDenys Vlasenko
2016-10-25ash: reduce code differences from upstreamDenys Vlasenko
2016-10-25ash: remove unused EXSHELLPROCDenys Vlasenko
2016-10-25ash: [BUILTIN] Use EXEXIT in place of EXEXECDenys Vlasenko
2016-10-25ash,hush: set exit code 127 in "sh /does/not/exist" caseDenys Vlasenko
2016-10-24ash: explain EXP_REDIR and why we (dont) glob redir filenamesDenys Vlasenko
2016-10-24ash: return exit status of nofork appletsRon Yorston
2016-10-07ash: all blocks in function node copying must be SHELL_ALIGNedDenys Vlasenko
2016-10-07ash: get rid of two global data variablesDenys Vlasenko
2016-10-07ash: comment out free(p) just before _exit, tweak some outdated commentsDenys Vlasenko
2016-10-02ash: [PARSER] Add nlprompt/nlnoprompt helpersDenys Vlasenko
2016-10-02whitespace fixesDenys Vlasenko
2016-10-02sh: do not print empty line at the end of "help" outputDenys Vlasenko
2016-10-02ash: undo "tokname hack"Denys Vlasenko
2016-10-02ash: placate gcc: "warning: ! is only applied to the left hand side of =="Denys Vlasenko
2016-10-02ash: fix globbing bugs when using glibc glob()Denys Vlasenko
2016-10-02ash: style fixesDenys Vlasenko
2016-10-02ash: support "--" in "source" builtinDenys Vlasenko
2016-10-02ash: expand: Fixed "$@" expansion when EXP_FULL is falseDenys Vlasenko
2016-10-02test: memory leak: free group id listDenys Vlasenko
2016-10-01ash: fix return_in_trap1.tests failureDenys Vlasenko
2016-10-01ash: [EXPAND] Optimise nulonly away and just use quoted as beforeDenys Vlasenko
2016-10-01ash: [EXPAND] Do not split quoted VSLENGTH and VSTRIMDenys Vlasenko
2016-10-01ash: [EXPAND] Split unquoted $@/$* correctly when IFS is set but emptyDenys Vlasenko
2016-10-01ash: fix "return N" not setting $? in loop conditionalsDenys Vlasenko
2016-10-01ash: [ERROR] Set exitstatus in onintDenys Vlasenko
2016-10-01ash: [EVAL] Revert SKIPEVAL into EXEXITDenys Vlasenko
2016-10-01ash: [EVAL] Pass EV_TESTED into evalcmdDenys Vlasenko
2016-10-01ash: fix a thinko in the last commitDenys Vlasenko
2016-10-01ash: make internal globbing code selectable from configDenys Vlasenko
2016-10-01ash: explain how "command" is handled, and shrink it a bitDenys Vlasenko
2016-09-30ash: [VAR] Initialise OPTIND after importing environmentDenys Vlasenko
2016-09-30ash: [BUILTIN] Merge SKIPFUNC/SKIPFILE and only clear SKIPFUNC when leaving d...Denys Vlasenko
2016-09-30ash: Avoid overflow for very long variable nameDenys Vlasenko
2016-09-30ash: [VAR] Sanitise environment variable names on entryDenys Vlasenko
2016-09-30ash: [EVAL] Avoid using undefined handlerDenys Vlasenko
2016-09-30ash: remove dead stores and unused variablesDenys Vlasenko
2016-09-30ash: [MEMALLOC] Add pushstackmarkDenys Vlasenko
2016-09-29ash: fix arithmetic closing )) split by backslash-newlineDenys Vlasenko