summaryrefslogtreecommitdiff
path: root/shell
AgeCommit message (Expand)Author
2025-08-18hush: disentangle keyword detection, no logic changesDenys Vlasenko
2025-08-17hush: make "function" keyword support optionalDenys Vlasenko
2025-08-17hush: with --login, errors /etc/profile in must not exit shellDenys Vlasenko
2025-08-17hush: recognize "function FUNC { cmd; }" syntaxDenys Vlasenko
2025-08-17hush: remove always-true conditionalDenys Vlasenko
2025-08-17hush: fix infinite loop expanding alias a="nice&&a"Denys Vlasenko
2025-08-17hush: comment fixesDenys Vlasenko
2025-08-17hush: make "alias" print aliases in properly escaped formDenys Vlasenko
2025-08-17hush: fix nested alias expansionDenys Vlasenko
2025-08-17hush: optional alias supportDenys Vlasenko
2025-08-16hush: optimization in set_local_var()Denys Vlasenko
2025-08-15hush: implement <<<here_string syntaxDenys Vlasenko
2025-08-14hush: allow faster parsing for "./:@" charactersDenys Vlasenko
2025-08-14hush: shrink syntax error handlingDenys Vlasenko
2025-08-14hush: undo incorrect change which allows a'b'=c to be assignmentDenys Vlasenko
2025-08-14hush: explain "empty quoted str marker" trickDenys Vlasenko
2025-08-14hush: improve code readability, no logic changesDenys Vlasenko
2025-08-14hush: move tickquote1.tests to hush-bugs/ - it's a known bugDenys Vlasenko
2025-08-14hush: remove the is_blank danceDenys Vlasenko
2025-08-14hush: remove two strchr's from the hottest parsing loopDenys Vlasenko
2025-08-13hush: optimize decoding of $'str' - avoid extra function call if we canDenys Vlasenko
2025-08-13hush: shrink i_getch, rename two functionsDenys Vlasenko
2025-08-13hush: ~5% faster parsing of typical shell scriptsDenys Vlasenko
2025-08-13hush: create a macro IS_NULL_WORD to test for null shell wordDenys Vlasenko
2025-08-13hush: fix a corner case in "case" stmt, ctx_dsemicolon is in fact unusedDenys Vlasenko
2025-08-12hush: allow nested negation "! ! ! CMD" - bash 5.2.15 allows itDenys Vlasenko
2025-08-12hush: drop ctx_inverted, use pipe->pi_invertedDenys Vlasenko
2025-08-12hush: do not segfault on "for </dev/null v in..."Denys Vlasenko
2025-08-11hush: test for, and disallow several invalid syntaxesDenys Vlasenko
2025-08-11ash: parser: Invalid redirections are run-time, not syntax errorsDenys Vlasenko
2025-08-11hush: fix var_backslash1.testsDenys Vlasenko
2025-08-11shells: testcase: add another test for EINTR on fifo openDenys Vlasenko
2025-08-11*: code shrink using sigprocmask2() where appropriateDenys Vlasenko
2025-08-10ash: converge waiting code to dash in its form, add comments, no code changesDenys Vlasenko
2025-08-10ash: move 100 bytes off global .data / .bss, no logic changesDenys Vlasenko
2025-08-09ash: redir: Retry open on EINTRDenys Vlasenko
2025-08-09ash: eval: Reset handler when entering a subshellDenys Vlasenko
2025-08-09ahs: jobs: Block signals during tcsetpgrpDenys Vlasenko
2025-08-09ash: eval: Add vfork supportDenys Vlasenko
2025-08-09ash: rename got_sigchld, doing_jobctl, and INT_ON/OFF to match dashDenys Vlasenko
2025-08-09ash: fix fallout of no-more-set commandnameDenys Vlasenko
2025-08-09shells: fix a typo in var_backslash1.tests, expand it while at itDenys Vlasenko
2025-08-09ash: eval: Always set exitstatus in evaltreeDenys Vlasenko
2025-08-09ash: options: Do not set commandname in procargsDenys Vlasenko
2025-08-09ash: jobs: drop unused node parameter in makejob()Denys Vlasenko
2025-08-09shells: add testsuite itemDenys Vlasenko
2025-08-08ash: reuse vstype_suffix[] in debug code, shrink itDenys Vlasenko
2025-08-07ash: fix cmdputs - was showing some variable forms incorrectlyDenys Vlasenko
2025-08-07hush: smarter optimization for not-globbing [ and [[Denys Vlasenko
2025-08-07ash: fix heredoc.tests broken by last commitDenys Vlasenko