summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2025-11-08eject: fix missing -s option in trivial usageHEADmasterDenys Vlasenko
2025-11-08dd: fix overflow for very large count/seek/skip valuesDenys Vlasenko
2025-11-08pgrep/pkill: fix -x to also match comm fieldDenys Vlasenko
2025-11-08ls: restore functionality of --colorDenys Vlasenko
2025-11-08lineedit: fix PS1='\W' for root directoryDenys Vlasenko
2025-11-08last: fix ignoring the first login entryDenys Vlasenko
2025-10-13busybox: optional --version supportDenys Vlasenko
2025-10-11ntpd: set tmx.maxerror properly - avoid STA_UNSYNCDenys Vlasenko
2025-10-08nsenter,unshare: don't use xvfork_parent_waits_and_exits(), it SEGVs on ppc64leDenys Vlasenko
2025-10-07cp: fix `cp -aT` overwriting symlink to directoriesDenys Vlasenko
2025-10-07chrt: support passing `-p 0` to operate on selfDenys Vlasenko
2025-10-07selinux: fix potential segfault in sestatusDenys Vlasenko
2025-10-07vi: warn about range in ':!' commandDenys Vlasenko
2025-09-24archival/libarchive: sanitize filenames on output (prevent control sequence a...Denys Vlasenko
2025-09-23ash: change procargs() to match recent dash changeDenys Vlasenko
2025-09-03hush: changes to comments and whitespace, no code changesDenys Vlasenko
2025-09-02ash: implement <<<here_string syntaxDenys Vlasenko
2025-08-18hush: fix several syntax corner cases with function definitionsDenys Vlasenko
2025-08-18hush: shrink "function" codeDenys Vlasenko
2025-08-18hush: do not SEGV on if { echo foo; } then { echo bar; } fiDenys Vlasenko
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