aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
AgeCommit message (Expand)Author
2020-12-21bc: do not allocate line editing state until neededDenys Vlasenko
2020-12-21hush: deal with FIXMEs for corner cases in parameter expansionDenys Vlasenko
2020-12-20hush: remove one redundant getpid() on every startupDenys Vlasenko
2020-12-14hush: code shrinkDenys Vlasenko
2020-12-13hush: if login shell, also source ~/.profileDenys Vlasenko
2020-12-13hush: NOMMU fix for hush-psubst/tick6.testsDenys Vlasenko
2020-12-13hush: fix -c SCRIPT handlingDenys Vlasenko
2020-11-30decrease paddign: gcc-9.3.1 slaps 32-byte alignment on arrays willy-nillyDenys Vlasenko
2020-11-16hush: make interactive ^C break out of PS2 modeDenys Vlasenko
2020-10-31shell: update comments on the status of [[ ]] compatDenys Vlasenko
2020-10-31shell: better support of [[ ]] bashismDenys Vlasenko
2020-10-24hush: output bash-compat killing signal namesDenys Vlasenko
2020-10-24hush: do not print killing signal name in `cmd_whihc_dies_on_signal`Denys Vlasenko
2020-06-24nologin: make it possible to build it as single appletDenys Vlasenko
2020-06-24suppress a few compile warningsDenys Vlasenko
2020-04-30ash,hush: drop pointer check before calls to show_historyRon Yorston
2020-02-21hush: fix negative_arith.tests: glob-protect dash in "$((arith))"Denys Vlasenko
2020-02-21hush: make "exit" in trap use pre-trap exitcode - fix for nested trapDenys Vlasenko
2020-02-21hush: make "exit" in trap use pre-trap exitcodeDenys Vlasenko
2020-02-20hush: implement "return NUM in trap sets $? after trap"Denys Vlasenko
2020-02-18ash,hush: add comment about masked SIGCHLD, handle SIG_IGNed SIGHUP as in bashDenys Vlasenko
2020-01-29ash,hush: allow builtins to be tab-completed, closes 7532Ron Yorston
2019-11-28hush: fix preprocessor directives indentationDenys Vlasenko
2019-11-01hush: restore redirected stdinDenys Vlasenko
2019-09-05hush: fix "set -o INVALID" affecting -e flag stateDenys Vlasenko
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