| Commit message (Expand) | Author | Age | Files | Lines |
* | ash,hush: show 'c' in $- if run in "sh -c CMD" | Denys Vlasenko | 2019-06-03 | 1 | -5/+8 |
* | hush: show 's' in $- | Denys Vlasenko | 2019-05-19 | 1 | -3/+5 |
* | hush: allocate line edit buffer only for interactive shell | Denys Vlasenko | 2019-05-19 | 1 | -5/+9 |
* | hush: implement $-, set default PATH if it is not set on startup | Denys Vlasenko | 2019-05-19 | 1 | -5/+26 |
* | hush: set default PS1/2 only if we interactive | Denys Vlasenko | 2019-05-19 | 1 | -16/+19 |
* | hush: handle LINENO the same way as RANDOM: variable is "ephemeral" | Denys Vlasenko | 2019-05-19 | 1 | -32/+18 |
* | hush: remove code to track PS1/2 values dynamically - it's too much work | Denys Vlasenko | 2019-05-16 | 1 | -61/+21 |
* | hush: small speedup in handle_changed_special_names() | Denys Vlasenko | 2019-05-16 | 1 | -2/+2 |
* | hush: fix quoted "${notexist-}" expansion to not disappear | Denys Vlasenko | 2019-05-15 | 1 | -0/+6 |
* | hush: fix "export PS1=xyz" and "local PS1=xyz" messing up prompt | Denys Vlasenko | 2019-05-14 | 1 | -16/+39 |
* | httpd: use full size of iobuf[] when piping CGI data | Denys Vlasenko | 2019-04-19 | 1 | -3/+0 |
* | hush: add bash-compatible EPOCH variables | Ron Yorston | 2019-04-16 | 1 | -0/+20 |
* | hush: fix "wait -n" to wait for a _job_, not a _process_ | Denys Vlasenko | 2019-03-27 | 1 | -9/+22 |
* | hush: add "wait -n" bashism | Denys Vlasenko | 2019-03-26 | 1 | -1/+17 |
* | config: update size information | Denys Vlasenko | 2018-12-28 | 1 | -1/+1 |
* | randomconfig fixes | Denys Vlasenko | 2018-12-27 | 1 | -1/+1 |
* | inetd: suppress aliasing warning | Denys Vlasenko | 2018-12-08 | 1 | -1/+1 |
* | suppress gcc 8 aliasing warnings | Denys Vlasenko | 2018-12-08 | 1 | -1/+1 |
* | hush: allow hush to run embedded scripts | Ron Yorston | 2018-11-27 | 1 | -0/+16 |
* | hush: correct description for HUSH_TICK config option | Ron Yorston | 2018-11-14 | 1 | -1/+1 |
* | hush: tweak comment, no code changes | Denys Vlasenko | 2018-08-14 | 1 | -4/+4 |
* | hush: add a comment on how globbing (should) work | Denys Vlasenko | 2018-08-11 | 1 | -0/+35 |
* | ash,hush: fold shell_builtin_read() way-too-many params into a struct param | Denys Vlasenko | 2018-08-05 | 1 | -22/+11 |
* | hush: set IFS to default on startup | Denys Vlasenko | 2018-08-05 | 1 | -11/+10 |
* | hush: fix fallout from FILE->HFILE conversion | Denys Vlasenko | 2018-08-05 | 1 | -2/+8 |
* | ash,hush: properly handle ${v//pattern/repl} if pattern starts with / | Denys Vlasenko | 2018-08-04 | 1 | -0/+9 |
* | hush: speed up ${var:+ARG} for literal ARGs | Denys Vlasenko | 2018-07-31 | 1 | -27/+31 |
* | hush: fix another case where empty "for" wasn't setting exitcode to 0 | Denys Vlasenko | 2018-07-28 | 1 | -1/+1 |
* | hush: disable debug_indent increment/decrement for HUSH_DEBUG < 2 builds | Denys Vlasenko | 2018-07-28 | 1 | -2/+2 |
* | hush: make "set -x" output don't redirectable when fd#2 redirected | Denys Vlasenko | 2018-07-28 | 1 | -45/+84 |
* | hush: make "set -x" output closer to bash | Denys Vlasenko | 2018-07-27 | 1 | -18/+60 |
* | hush: fix "set -x" output prefix overlapping for v="..`cmd`.." case | Denys Vlasenko | 2018-07-27 | 1 | -14/+20 |
* | hush: in some cases, expand_on_ifs() relied of uninitialized memory | Denys Vlasenko | 2018-07-27 | 1 | -2/+13 |
* | hush: improve set -x: make "+++" indent level increase in `cmd` and eval. | Denys Vlasenko | 2018-07-26 | 1 | -9/+19 |
* | hush: fix/explain corner cases of redirection colliding with script fd | Denys Vlasenko | 2018-07-24 | 1 | -12/+49 |
* | hush: fix nested redirects colliding with script fds | Denys Vlasenko | 2018-07-24 | 1 | -98/+136 |
* | hush: handle backslash-newline in heredoc terminators | Denys Vlasenko | 2018-07-24 | 1 | -2/+18 |
* | hush: fix handling of heredocs not enclosed in groups where they are "declared" | Denys Vlasenko | 2018-07-24 | 1 | -45/+59 |
* | hush: fix heredoc handling in the "cmd <<EOF ;<newline>" case | Denys Vlasenko | 2018-07-23 | 1 | -24/+30 |
* | hush: fix handling of heredocs starting with empty lines | Denys Vlasenko | 2018-07-23 | 1 | -0/+8 |
* | hush: never glob result of dquoted "${v:+/bin/c*}" | Denys Vlasenko | 2018-07-20 | 1 | -1/+13 |
* | hush: tidy up code after previous commits | Denys Vlasenko | 2018-07-20 | 1 | -48/+43 |
* | hush: better names for o_free_unsafe() / o_free(), no logic changes | Denys Vlasenko | 2018-07-20 | 1 | -16/+17 |
* | hush: fix handling of '' in ${var:+ARG} | Denys Vlasenko | 2018-07-20 | 1 | -3/+9 |
* | hush: fix word splitting in ${v:+ARG} - dollar_altvalue1 test | Denys Vlasenko | 2018-07-20 | 1 | -61/+202 |
* | hush: expand_vars_to_list() should not assume it starts new word | Denys Vlasenko | 2018-07-20 | 1 | -8/+10 |
* | hush: remove pointless "next" var, simplify expand_vars_to_list() | Denys Vlasenko | 2018-07-20 | 1 | -19/+16 |
* | hush: store "ended_in_ifs" flag in o_string | Denys Vlasenko | 2018-07-20 | 1 | -18/+19 |
* | hush: propagate (output,n) parameters into expand_one_var() | Denys Vlasenko | 2018-07-20 | 1 | -14/+49 |
* | hush: make expand_vars_to_list() a bit more sane | Denys Vlasenko | 2018-07-20 | 1 | -28/+32 |