- 62f1eed hush: in a comment, document what -i might be doing by Denys Vlasenko · 3 years, 2 months ago
- 7c3e96d shell: use more compact SHELL_ASH / HUSH config defines. no code changes by Denys Vlasenko · 3 years, 2 months ago
- 53b2fdc *: add NOINLINEs where code noticeably shrinks by Denys Vlasenko · 3 years, 2 months ago
- 49bcf9f hush: speed up ${x//\*/|} too by Denys Vlasenko · 3 years, 2 months ago
- 574b9c4 hush: fix var_LINENO3.tests failure by Denys Vlasenko · 3 years, 3 months ago
- e53c7db hush: fix set -n to act immediately, not just after run_list() by Denys Vlasenko · 3 years, 3 months ago
- 21afdde hush: fix "error: invalid preprocessing directive ##" by Denys Vlasenko · 3 years, 4 months ago
- 37460f5 hush: tweak ${var/pattern/repl} optimization by Denys Vlasenko · 3 years, 5 months ago
- 49cc3ca hush: optimize ${var/pattern/repl} for trivial patterns by Denys Vlasenko · 3 years, 5 months ago
- 8dd676c hush: add missed "undef" by Denys Vlasenko · 3 years, 5 months ago
- b278d82 hush: implement $'str' bashism by Denys Vlasenko · 3 years, 5 months ago
- 97c3b5e hush: fix bkslash+newline handling and number validation in ${NN} and ${#NN} by Denys Vlasenko · 3 years, 6 months ago
- 83a4967 hush: fix handling of "cmd && &" by Denys Vlasenko · 3 years, 6 months ago
- 1b7a9b6 hush: fix handling of \^C and "^C" by Denys Vlasenko · 3 years, 6 months ago
- 1f60d88 *: more --help tweaks by Denys Vlasenko · 3 years, 6 months ago
- e2b9215 *: --help tweaks by Denys Vlasenko · 3 years, 6 months ago
- 457825f shells: do not allow bare "read" in non-bash compat configs by Denys Vlasenko · 3 years, 6 months ago
- f0c0c56 hush: beautify ^D handling to match ash / bash by Denys Vlasenko · 3 years, 8 months ago
- cbfdeba hush: make LINENO selectable without BASH-COMPAT by Denys Vlasenko · 3 years, 9 months ago
- cad3fc7 libbb: introduce and use fputs_stdout by Ron Yorston · 3 years, 10 months ago
- 3b05305 hush: code shrink by Denys Vlasenko · 4 years ago
- 3c13da3 libbb: introduce and use xgettimeofday(), do not truncate 64-bit time_t in shells by Denys Vlasenko · 4 years ago
- 77a51a2 randomconfig fixes by Denys Vlasenko · 4 years ago
- c7ef818 hush: make comment more clear by Denys Vlasenko · 4 years ago
- 1237d62 hush: fix this case: echo "SCRIPT" | hush by Denys Vlasenko · 4 years ago
- 46a71dc hush: if !EDITING, do not regenerate prompt for every input char by Denys Vlasenko · 4 years ago
- 521220e hush: fix ^C in INTERACTIVE, !EDITING config by Denys Vlasenko · 4 years ago
- 18bcaf3 hush: revert "make interactive ^C break out of PS2 mode" by Denys Vlasenko · 4 years ago
- 649acb9 hush: fix PS1 prompth in !EDITING config by Denys Vlasenko · 4 years ago
- a7b52d2 hush: fix fallout from tweaking ${var:START:LEN} code by Denys Vlasenko · 4 years ago
- 93e2a22 shell: for signal exitcode, use 128 | sig, not 128 + sig - MIPS has signal 128 by Denys Vlasenko · 4 years ago
- 0ab2dd4 hush: fix comment by Denys Vlasenko · 4 years ago
- 00eb23b bc: do not allocate line editing state until needed by Denys Vlasenko · 4 years ago
- 07abc7c hush: deal with FIXMEs for corner cases in parameter expansion by Denys Vlasenko · 4 years ago
- bb4e32b hush: remove one redundant getpid() on every startup by Denys Vlasenko · 4 years ago
- a8e1960 hush: code shrink by Denys Vlasenko · 4 years ago
- 63139b5 hush: if login shell, also source ~/.profile by Denys Vlasenko · 4 years ago
- 49142d4 hush: NOMMU fix for hush-psubst/tick6.tests by Denys Vlasenko · 4 years ago
- 9cabd17 hush: fix -c SCRIPT handling by Denys Vlasenko · 4 years ago
- 965b795 decrease paddign: gcc-9.3.1 slaps 32-byte alignment on arrays willy-nilly by Denys Vlasenko · 4 years ago
- dc9c10a hush: make interactive ^C break out of PS2 mode by Denys Vlasenko · 4 years, 1 month ago
- a7c0653 shell: update comments on the status of [[ ]] compat by Denys Vlasenko · 4 years, 1 month ago
- d2241f5 shell: better support of [[ ]] bashism by Denys Vlasenko · 4 years, 1 month ago
- e16f7eb hush: output bash-compat killing signal names by Denys Vlasenko · 4 years, 2 months ago
- b65d6cb hush: do not print killing signal name in `cmd_whihc_dies_on_signal` by Denys Vlasenko · 4 years, 2 months ago
- 67e1529 nologin: make it possible to build it as single applet by Denys Vlasenko · 4 years, 6 months ago
- d5314e7 suppress a few compile warnings by Denys Vlasenko · 4 years, 6 months ago
- 9f3b410 ash,hush: drop pointer check before calls to show_history by Ron Yorston · 5 years ago
- e4a0612 hush: fix negative_arith.tests: glob-protect dash in "$((arith))" by Denys Vlasenko · 4 years, 10 months ago
- 3ced804 hush: make "exit" in trap use pre-trap exitcode - fix for nested trap by Denys Vlasenko · 4 years, 10 months ago
- cc9ecd9 hush: make "exit" in trap use pre-trap exitcode by Denys Vlasenko · 4 years, 10 months ago
- bb095f4 hush: implement "return NUM in trap sets $? after trap" by Denys Vlasenko · 4 years, 10 months ago
- 23bc562 ash,hush: add comment about masked SIGCHLD, handle SIG_IGNed SIGHUP as in bash by Denys Vlasenko · 4 years, 10 months ago
- 9e2a566 ash,hush: allow builtins to be tab-completed, closes 7532 by Ron Yorston · 5 years ago
- 259747c hush: fix preprocessor directives indentation by Denys Vlasenko · 5 years ago
- 2180656 hush: restore redirected stdin by Denys Vlasenko · 5 years ago
- 18a90ec hush: fix "set -o INVALID" affecting -e flag state by Denys Vlasenko · 5 years ago
- 6937487 libbb: reduce the overhead of single parameter bb_error_msg() calls by James Byrne · 5 years ago
- f363458 ash,hush: show 'c' in $- if run in "sh -c CMD" by Denys Vlasenko · 6 years ago
- d8740b2 hush: show 's' in $- by Denys Vlasenko · 6 years ago
- 76a4e83 hush: allocate line edit buffer only for interactive shell by Denys Vlasenko · 6 years ago
- ef8985c hush: implement $-, set default PATH if it is not set on startup by Denys Vlasenko · 6 years ago
- 0c36019 hush: set default PS1/2 only if we interactive by Denys Vlasenko · 6 years ago
- 08fb82c hush: handle LINENO the same way as RANDOM: variable is "ephemeral" by Denys Vlasenko · 6 years ago
- 4ebcdf7 hush: remove code to track PS1/2 values dynamically - it's too much work by Denys Vlasenko · 6 years ago
- 0ee0b65 hush: small speedup in handle_changed_special_names() by Denys Vlasenko · 6 years ago
- 9e0adb9 hush: fix quoted "${notexist-}" expansion to not disappear by Denys Vlasenko · 6 years ago
- d8bd701 hush: fix "export PS1=xyz" and "local PS1=xyz" messing up prompt by Denys Vlasenko · 6 years ago
- 1c35694 httpd: use full size of iobuf[] when piping CGI data by Denys Vlasenko · 6 years ago
- a81700b hush: add bash-compatible EPOCH variables by Ron Yorston · 6 years ago
- e6f51ac hush: fix "wait -n" to wait for a _job_, not a _process_ by Denys Vlasenko · 6 years ago
- 4d1c514 hush: add "wait -n" bashism by Denys Vlasenko · 6 years ago
- b097a84 config: update size information by Denys Vlasenko · 6 years ago
- 3d27d43 randomconfig fixes by Denys Vlasenko · 6 years ago
- b437df1 inetd: suppress aliasing warning by Denys Vlasenko · 6 years ago
- 136fe9b suppress gcc 8 aliasing warnings by Denys Vlasenko · 6 years ago
- 71df2d3 hush: allow hush to run embedded scripts by Ron Yorston · 6 years ago
- 060f0a0 hush: correct description for HUSH_TICK config option by Ron Yorston · 6 years ago
- c97df29 hush: tweak comment, no code changes by Denys Vlasenko · 6 years ago
- 4bf0854 hush: add a comment on how globbing (should) work by Denys Vlasenko · 6 years ago
- 19358cc ash,hush: fold shell_builtin_read() way-too-many params into a struct param by Denys Vlasenko · 6 years ago
- fd6f295 hush: set IFS to default on startup by Denys Vlasenko · 6 years ago
- e9dccab hush: fix fallout from FILE->HFILE conversion by Denys Vlasenko · 6 years ago
- c2aa218 ash,hush: properly handle ${v//pattern/repl} if pattern starts with / by Denys Vlasenko · 6 years ago
- 54fdabd hush: speed up ${var:+ARG} for literal ARGs by Denys Vlasenko · 6 years ago
- a5db1d7 hush: fix another case where empty "for" wasn't setting exitcode to 0 by Denys Vlasenko · 6 years ago
- a8e7441 hush: disable debug_indent increment/decrement for HUSH_DEBUG < 2 builds by Denys Vlasenko · 6 years ago
- aa449c9 hush: make "set -x" output don't redirectable when fd#2 redirected by Denys Vlasenko · 6 years ago
- 4b70c92 hush: make "set -x" output closer to bash by Denys Vlasenko · 6 years ago
- 9dda927 hush: fix "set -x" output prefix overlapping for v="..`cmd`.." case by Denys Vlasenko · 6 years ago
- 186cf49 hush: in some cases, expand_on_ifs() relied of uninitialized memory by Denys Vlasenko · 6 years ago
- 7c5f18a hush: improve set -x: make "+++" indent level increase in `cmd` and eval. by Denys Vlasenko · 6 years ago
- 945e9b0 hush: fix/explain corner cases of redirection colliding with script fd by Denys Vlasenko · 6 years ago
- 41ef41b hush: fix nested redirects colliding with script fds by Denys Vlasenko · 6 years ago
- dfc7394 hush: handle backslash-newline in heredoc terminators by Denys Vlasenko · 6 years ago
- 474cb20 hush: fix handling of heredocs not enclosed in groups where they are "declared" by Denys Vlasenko · 6 years ago
- 3675c37 hush: fix heredoc handling in the "cmd <<EOF ;<newline>" case by Denys Vlasenko · 6 years ago
- d73cdbf hush: fix handling of heredocs starting with empty lines by Denys Vlasenko · 6 years ago
- f36caa4 hush: never glob result of dquoted "${v:+/bin/c*}" by Denys Vlasenko · 6 years ago
- 4c3c8a1 hush: tidy up code after previous commits by Denys Vlasenko · 6 years ago