Age | Commit message (Expand) | Author |
2023-06-17 | shell: move varcmp() to shell_common.h and use it in hush | Denys Vlasenko |
2023-06-12 | hush: fix expansion of space in "a=${a:+$a }c" construct | Denys Vlasenko |
2023-05-25 | hush: make "false" built-in | Denys Vlasenko |
2023-05-25 | hush: fix ELIF cmd1;cmd2 THEN ... not executing cmd2, closes 15571 | Denys Vlasenko |
2023-05-09 | hush: add comment about abort on syntax error %{^} | Denys Vlasenko |
2023-05-08 | hush: fix an interactive abort on error | Denys Vlasenko |
2023-04-16 | ash,hush: tab completion of functions and aliases | Ron Yorston |
2023-04-13 | hush: quote variable values printed by "set" (match ash behavior) | Denys Vlasenko |
2023-04-01 | hush (NOMMU): fix LINENO in execed children | Denys Vlasenko |
2023-04-01 | hush: speed up "big heredoc" code | Denys Vlasenko |
2023-04-01 | hush: add TODO comment | Denys Vlasenko |
2023-01-30 | hush: restore SIGHUP handling, this time explain why we do what we do | Denys Vlasenko |
2023-01-30 | hush: restore tty pgrp on SIGHUP | Denys Vlasenko |
2023-01-30 | hush: remove special handling of SIGHUP | Denys Vlasenko |
2023-01-26 | shell: fix SIGWINCH and SIGCHLD (in hush) interrupting line input, closes 15256 | Denys Vlasenko |
2023-01-03 | hush: code shrink | Denys Vlasenko |
2023-01-03 | shell: fix compile failures in some configs | Denys Vlasenko |
2022-06-26 | ash,hush: use HOME for tab completion and prompts | Ron Yorston |
2022-02-06 | *: slap on a few ALIGN_PTR where appropriate | Denys Vlasenko |
2022-01-17 | ash,hush: fix handling of SIGINT while waiting for interactive input | Denys Vlasenko |
2022-01-13 | libbb: invert the meaning of SETUP_ENV_NO_CHDIR -> SETUP_ENV_CHDIR | Denys Vlasenko |
2022-01-05 | libbb: code shrink: introduce and use [_]exit_SUCCESS() | Denys Vlasenko |
2021-10-13 | shell: tweak --help | Denys Vlasenko |
2021-10-13 | hush: in a comment, document what -i might be doing | Denys Vlasenko |
2021-10-12 | shell: use more compact SHELL_ASH / HUSH config defines. no code changes | Denys Vlasenko |
2021-10-10 | *: add NOINLINEs where code noticeably shrinks | Denys Vlasenko |
2021-10-09 | hush: speed up ${x//\*/|} too | Denys Vlasenko |
2021-09-07 | hush: fix var_LINENO3.tests failure | Denys Vlasenko |
2021-09-07 | hush: fix set -n to act immediately, not just after run_list() | Denys Vlasenko |
2021-08-15 | hush: fix "error: invalid preprocessing directive ##" | Denys Vlasenko |
2021-07-27 | hush: tweak ${var/pattern/repl} optimization | Denys Vlasenko |
2021-07-27 | hush: optimize ${var/pattern/repl} for trivial patterns | Denys Vlasenko |
2021-07-27 | hush: add missed "undef" | Denys Vlasenko |
2021-07-26 | hush: implement $'str' bashism | Denys Vlasenko |
2021-06-19 | hush: fix bkslash+newline handling and number validation in ${NN} and ${#NN} | Denys Vlasenko |
2021-06-15 | hush: fix handling of "cmd && &" | Denys Vlasenko |
2021-06-15 | hush: fix handling of \^C and "^C" | Denys Vlasenko |
2021-06-15 | *: more --help tweaks | Denys Vlasenko |
2021-06-14 | *: --help tweaks | Denys Vlasenko |
2021-06-06 | shells: do not allow bare "read" in non-bash compat configs | Denys Vlasenko |
2021-04-13 | hush: beautify ^D handling to match ash / bash | Denys Vlasenko |
2021-03-10 | hush: make LINENO selectable without BASH-COMPAT | Denys Vlasenko |
2021-02-03 | libbb: introduce and use fputs_stdout | Ron Yorston |
2021-01-04 | hush: code shrink | Denys Vlasenko |
2020-12-30 | libbb: introduce and use xgettimeofday(), do not truncate 64-bit time_t in sh... | Denys Vlasenko |
2020-12-29 | randomconfig fixes | Denys Vlasenko |
2020-12-27 | hush: make comment more clear | Denys Vlasenko |
2020-12-25 | hush: fix this case: echo "SCRIPT" | hush | Denys Vlasenko |
2020-12-25 | hush: if !EDITING, do not regenerate prompt for every input char | Denys Vlasenko |
2020-12-23 | hush: fix ^C in INTERACTIVE, !EDITING config | Denys Vlasenko |