aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* hush: do not print killing signal name in `cmd_whihc_dies_on_signal`Denys Vlasenko2020-10-241-1/+7
* nologin: make it possible to build it as single appletDenys Vlasenko2020-06-241-31/+42
* suppress a few compile warningsDenys Vlasenko2020-06-241-1/+1
* ash,hush: drop pointer check before calls to show_historyRon Yorston2020-04-301-2/+1
* hush: fix negative_arith.tests: glob-protect dash in "$((arith))"Denys Vlasenko2020-02-211-5/+19
* hush: make "exit" in trap use pre-trap exitcode - fix for nested trapDenys Vlasenko2020-02-211-1/+3
* hush: make "exit" in trap use pre-trap exitcodeDenys Vlasenko2020-02-211-3/+13
* hush: implement "return NUM in trap sets $? after trap"Denys Vlasenko2020-02-201-1/+30
* ash,hush: add comment about masked SIGCHLD, handle SIG_IGNed SIGHUP as in bashDenys Vlasenko2020-02-181-3/+17
* ash,hush: allow builtins to be tab-completed, closes 7532Ron Yorston2020-01-291-0/+17
* hush: fix preprocessor directives indentationDenys Vlasenko2019-11-281-32/+32
* hush: restore redirected stdinDenys Vlasenko2019-11-011-7/+22
* hush: fix "set -o INVALID" affecting -e flag stateDenys Vlasenko2019-09-051-11/+9
* libbb: reduce the overhead of single parameter bb_error_msg() callsJames Byrne2019-07-021-16/+16
* ash,hush: show 'c' in $- if run in "sh -c CMD"Denys Vlasenko2019-06-031-5/+8
* hush: show 's' in $-Denys Vlasenko2019-05-191-3/+5
* hush: allocate line edit buffer only for interactive shellDenys Vlasenko2019-05-191-5/+9
* hush: implement $-, set default PATH if it is not set on startupDenys Vlasenko2019-05-191-5/+26
* hush: set default PS1/2 only if we interactiveDenys Vlasenko2019-05-191-16/+19
* hush: handle LINENO the same way as RANDOM: variable is "ephemeral"Denys Vlasenko2019-05-191-32/+18
* hush: remove code to track PS1/2 values dynamically - it's too much workDenys Vlasenko2019-05-161-61/+21
* hush: small speedup in handle_changed_special_names()Denys Vlasenko2019-05-161-2/+2
* hush: fix quoted "${notexist-}" expansion to not disappearDenys Vlasenko2019-05-151-0/+6
* hush: fix "export PS1=xyz" and "local PS1=xyz" messing up promptDenys Vlasenko2019-05-141-16/+39
* httpd: use full size of iobuf[] when piping CGI dataDenys Vlasenko2019-04-191-3/+0
* hush: add bash-compatible EPOCH variablesRon Yorston2019-04-161-0/+20
* hush: fix "wait -n" to wait for a _job_, not a _process_Denys Vlasenko2019-03-271-9/+22
* hush: add "wait -n" bashismDenys Vlasenko2019-03-261-1/+17
* config: update size informationDenys Vlasenko2018-12-281-1/+1
* randomconfig fixesDenys Vlasenko2018-12-271-1/+1
* inetd: suppress aliasing warningDenys Vlasenko2018-12-081-1/+1
* suppress gcc 8 aliasing warningsDenys Vlasenko2018-12-081-1/+1
* hush: allow hush to run embedded scriptsRon Yorston2018-11-271-0/+16
* hush: correct description for HUSH_TICK config optionRon Yorston2018-11-141-1/+1
* hush: tweak comment, no code changesDenys Vlasenko2018-08-141-4/+4
* hush: add a comment on how globbing (should) workDenys Vlasenko2018-08-111-0/+35
* ash,hush: fold shell_builtin_read() way-too-many params into a struct paramDenys Vlasenko2018-08-051-22/+11
* hush: set IFS to default on startupDenys Vlasenko2018-08-051-11/+10
* hush: fix fallout from FILE->HFILE conversionDenys Vlasenko2018-08-051-2/+8
* ash,hush: properly handle ${v//pattern/repl} if pattern starts with /Denys Vlasenko2018-08-041-0/+9
* hush: speed up ${var:+ARG} for literal ARGsDenys Vlasenko2018-07-311-27/+31
* hush: fix another case where empty "for" wasn't setting exitcode to 0Denys Vlasenko2018-07-281-1/+1
* hush: disable debug_indent increment/decrement for HUSH_DEBUG < 2 buildsDenys Vlasenko2018-07-281-2/+2
* hush: make "set -x" output don't redirectable when fd#2 redirectedDenys Vlasenko2018-07-281-45/+84
* hush: make "set -x" output closer to bashDenys Vlasenko2018-07-271-18/+60
* hush: fix "set -x" output prefix overlapping for v="..`cmd`.." caseDenys Vlasenko2018-07-271-14/+20
* hush: in some cases, expand_on_ifs() relied of uninitialized memoryDenys Vlasenko2018-07-271-2/+13
* hush: improve set -x: make "+++" indent level increase in `cmd` and eval.Denys Vlasenko2018-07-261-9/+19
* hush: fix/explain corner cases of redirection colliding with script fdDenys Vlasenko2018-07-241-12/+49
* hush: fix nested redirects colliding with script fdsDenys Vlasenko2018-07-241-98/+136