aboutsummaryrefslogtreecommitdiff
path: root/shell
AgeCommit message (Expand)Author
2020-04-30ash,hush: drop pointer check before calls to show_historyRon Yorston
2020-04-30ash: fix build failure when command built-in is disabledRon Yorston
2020-02-26shells: fix exitcode_trapN tests to avoid racesDenys Vlasenko
2020-02-24ash: expand: Fix multiple issues with EXP_DISCARD in evalvarDenys Vlasenko
2020-02-24ash: expand: Do not reprocess data when expanding wordsDenys Vlasenko
2020-02-24ash: move TRACE statement in evalcommand()Ron Yorston
2020-02-24ash: rename some function parameters to match dashDenys Vlasenko
2020-02-24ash: rename stack_nputstr() back to stnputs() to match dashDenys Vlasenko
2020-02-22ash: Expand here-documents in the current shell environmentDenys Vlasenko
2020-02-22ash: parser: Do not push token back before parseheredocDenys Vlasenko
2020-02-22ash: parser: Fix old-style command substitution here-document crashDenys Vlasenko
2020-02-21hush: fix negative_arith.tests: glob-protect dash in "$((arith))"Denys Vlasenko
2020-02-21ash: expand: Ensure result is escaped in cvtnumDenys Vlasenko
2020-02-21ash: memalloc: Avoid looping in growstacktoDenys Vlasenko
2020-02-21hush: make "exit" in trap use pre-trap exitcode - fix for nested trapDenys Vlasenko
2020-02-21hush: make "exit" in trap use pre-trap exitcodeDenys Vlasenko
2020-02-20ash: eval: Only restore exit status on exit/returnDenys Vlasenko
2020-02-20ash: Return without arguments in a trap should use status outside trapsDenys Vlasenko
2020-02-20hush: implement "return NUM in trap sets $? after trap"Denys Vlasenko
2020-02-20ash: return exit status of nofork applets (again)Ron Yorston
2020-02-20ash: expand: Merge syntax/quotes in memtodest with flagsDenys Vlasenko
2020-02-20ash: eval: Always set localvar_stopDenys Vlasenko
2020-02-20ash: eval: Replace with listsetvar with mklocal/setvareqDenys Vlasenko
2020-02-20ash: eval: Fail immediately with redirections errors for simple commandDenys Vlasenko
2020-02-20ash: eval: Add assignment built-in support againDenys Vlasenko
2020-02-19ash,hush: testcase for "exit" without arguments in a trapDenys Vlasenko
2020-02-18ash,hush: add comment about masked SIGCHLD, handle SIG_IGNed SIGHUP as in bashDenys Vlasenko
2020-02-18ash: jobs: Only clear gotsigchld when waiting for everythingDenys Vlasenko
2020-02-18ash: jobs - Do not block when waiting on SIGCHLDDenys Vlasenko
2020-02-18ash: eval: Reap zombies after built-in commands and functionsDenys Vlasenko
2020-02-17ash: exec: Never rehash regular built-insDenys Vlasenko
2020-02-17ash: exec: Stricter pathopt parsingDenys Vlasenko
2020-02-17ash: exec: Do not allocate stack string in padvanceDenys Vlasenko
2020-02-17ash: memalloc: Add growstackto helperDenys Vlasenko
2020-02-17ash: parser: Save/restore here-documents in command substitutionDenys Vlasenko
2020-02-17ash: mkinit: Split reset into exitreset and resetDenys Vlasenko
2020-02-17ash: expand: Fix trailing newlines processing in backquote expandingDenys Vlasenko
2020-02-17ash: parser: Only accept single-digit parameter expansion outside of bracesDenys Vlasenko
2020-02-16ash: shell: Fix clang warnings about "string plus integer"Denys Vlasenko
2020-02-16ash: eval: Use the correct expansion mode for fd redirectionDenys Vlasenko
2020-02-16ash: expand: Fix skipping of command substitution when trimming in evalvarDenys Vlasenko
2020-02-16ash: main: Print \n upon EOF (CTRL-D) when run interactivelyDenys Vlasenko
2020-02-16ash: expand: Use HOME in tilde expansion when it is emptyDenys Vlasenko
2020-02-16ash: builtin: Mark more regular built-insDenys Vlasenko
2020-02-16ash: jobs: Replace some uses of fmtstr with stpcpy/stpncpyDenys Vlasenko
2020-02-16ash: output: Fix fmtstr return valueDenys Vlasenko
2020-02-16ash: main: Only set savestatus in exitcmdDenys Vlasenko
2020-02-16ash: [BUILTIN] Exit without arguments in a trap should use status outside trapsDenys Vlasenko
2020-02-16ash: parser: Fix incorrect eating of backslash newlinesDenys Vlasenko
2020-02-16ash: use pgetc_eatbnl() in more places, take 2Denys Vlasenko