aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
AgeCommit message (Expand)Author
2019-07-02libbb: reduce the overhead of single parameter bb_error_msg() callsJames Byrne
2019-06-03ash,hush: show 'c' in $- if run in "sh -c CMD"Denys Vlasenko
2019-05-19hush: show 's' in $-Denys Vlasenko
2019-05-19hush: allocate line edit buffer only for interactive shellDenys Vlasenko
2019-05-19hush: implement $-, set default PATH if it is not set on startupDenys Vlasenko
2019-05-19hush: set default PS1/2 only if we interactiveDenys Vlasenko
2019-05-19hush: handle LINENO the same way as RANDOM: variable is "ephemeral"Denys Vlasenko
2019-05-16hush: remove code to track PS1/2 values dynamically - it's too much workDenys Vlasenko
2019-05-16hush: small speedup in handle_changed_special_names()Denys Vlasenko
2019-05-15hush: fix quoted "${notexist-}" expansion to not disappearDenys Vlasenko
2019-05-14hush: fix "export PS1=xyz" and "local PS1=xyz" messing up promptDenys Vlasenko
2019-04-19httpd: use full size of iobuf[] when piping CGI dataDenys Vlasenko
2019-04-16hush: add bash-compatible EPOCH variablesRon Yorston
2019-03-27hush: fix "wait -n" to wait for a _job_, not a _process_Denys Vlasenko
2019-03-26hush: add "wait -n" bashismDenys Vlasenko
2018-12-28config: update size informationDenys Vlasenko
2018-12-27randomconfig fixesDenys Vlasenko
2018-12-08inetd: suppress aliasing warningDenys Vlasenko
2018-12-08suppress gcc 8 aliasing warningsDenys Vlasenko
2018-11-27hush: allow hush to run embedded scriptsRon Yorston
2018-11-14hush: correct description for HUSH_TICK config optionRon Yorston
2018-08-14hush: tweak comment, no code changesDenys Vlasenko
2018-08-11hush: add a comment on how globbing (should) workDenys Vlasenko
2018-08-05ash,hush: fold shell_builtin_read() way-too-many params into a struct paramDenys Vlasenko
2018-08-05hush: set IFS to default on startupDenys Vlasenko
2018-08-05hush: fix fallout from FILE->HFILE conversionDenys Vlasenko
2018-08-04ash,hush: properly handle ${v//pattern/repl} if pattern starts with /Denys Vlasenko
2018-07-31hush: speed up ${var:+ARG} for literal ARGsDenys Vlasenko
2018-07-28hush: fix another case where empty "for" wasn't setting exitcode to 0Denys Vlasenko
2018-07-28hush: disable debug_indent increment/decrement for HUSH_DEBUG < 2 buildsDenys Vlasenko
2018-07-28hush: make "set -x" output don't redirectable when fd#2 redirectedDenys Vlasenko
2018-07-27hush: make "set -x" output closer to bashDenys Vlasenko
2018-07-27hush: fix "set -x" output prefix overlapping for v="..`cmd`.." caseDenys Vlasenko
2018-07-27hush: in some cases, expand_on_ifs() relied of uninitialized memoryDenys Vlasenko
2018-07-26hush: improve set -x: make "+++" indent level increase in `cmd` and eval.Denys Vlasenko
2018-07-24hush: fix/explain corner cases of redirection colliding with script fdDenys Vlasenko
2018-07-24hush: fix nested redirects colliding with script fdsDenys Vlasenko
2018-07-24hush: handle backslash-newline in heredoc terminatorsDenys Vlasenko
2018-07-24hush: fix handling of heredocs not enclosed in groups where they are "declared"Denys Vlasenko
2018-07-23hush: fix heredoc handling in the "cmd <<EOF ;<newline>" caseDenys Vlasenko
2018-07-23hush: fix handling of heredocs starting with empty linesDenys Vlasenko
2018-07-20hush: never glob result of dquoted "${v:+/bin/c*}"Denys Vlasenko
2018-07-20hush: tidy up code after previous commitsDenys Vlasenko
2018-07-20hush: better names for o_free_unsafe() / o_free(), no logic changesDenys Vlasenko
2018-07-20hush: fix handling of '' in ${var:+ARG}Denys Vlasenko
2018-07-20hush: fix word splitting in ${v:+ARG} - dollar_altvalue1 testDenys Vlasenko
2018-07-20hush: expand_vars_to_list() should not assume it starts new wordDenys Vlasenko
2018-07-20hush: remove pointless "next" var, simplify expand_vars_to_list()Denys Vlasenko
2018-07-20hush: store "ended_in_ifs" flag in o_stringDenys Vlasenko
2018-07-20hush: propagate (output,n) parameters into expand_one_var()Denys Vlasenko