aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* shell: tweak --helpDenys Vlasenko2021-10-131-1/+1
* hush: in a comment, document what -i might be doingDenys Vlasenko2021-10-131-3/+26
* shell: use more compact SHELL_ASH / HUSH config defines. no code changesDenys Vlasenko2021-10-121-1/+1
* *: add NOINLINEs where code noticeably shrinksDenys Vlasenko2021-10-101-1/+1
* hush: speed up ${x//\*/|} tooDenys Vlasenko2021-10-091-4/+9
* hush: fix var_LINENO3.tests failureDenys Vlasenko2021-09-071-2/+8
* hush: fix set -n to act immediately, not just after run_list()Denys Vlasenko2021-09-071-2/+6
* hush: fix "error: invalid preprocessing directive ##"Denys Vlasenko2021-08-151-1/+1
* hush: tweak ${var/pattern/repl} optimizationDenys Vlasenko2021-07-271-5/+4
* hush: optimize ${var/pattern/repl} for trivial patternsDenys Vlasenko2021-07-271-0/+13
* hush: add missed "undef"Denys Vlasenko2021-07-271-3/+3
* hush: implement $'str' bashismDenys Vlasenko2021-07-261-1/+102
* hush: fix bkslash+newline handling and number validation in ${NN} and ${#NN}Denys Vlasenko2021-06-191-1/+27
* hush: fix handling of "cmd && &"Denys Vlasenko2021-06-151-1/+5
* hush: fix handling of \^C and "^C"Denys Vlasenko2021-06-151-0/+11
* *: more --help tweaksDenys Vlasenko2021-06-151-1/+1
* *: --help tweaksDenys Vlasenko2021-06-141-1/+1
* shells: do not allow bare "read" in non-bash compat configsDenys Vlasenko2021-06-061-3/+10
* hush: beautify ^D handling to match ash / bashDenys Vlasenko2021-04-131-0/+2
* hush: make LINENO selectable without BASH-COMPATDenys Vlasenko2021-03-101-5/+5
* libbb: introduce and use fputs_stdoutRon Yorston2021-02-031-1/+1
* hush: code shrinkDenys Vlasenko2021-01-041-5/+7
* libbb: introduce and use xgettimeofday(), do not truncate 64-bit time_t in sh...Denys Vlasenko2020-12-301-5/+5
* randomconfig fixesDenys Vlasenko2020-12-291-1/+3
* hush: make comment more clearDenys Vlasenko2020-12-271-4/+5
* hush: fix this case: echo "SCRIPT" | hushDenys Vlasenko2020-12-251-1/+5
* hush: if !EDITING, do not regenerate prompt for every input charDenys Vlasenko2020-12-251-5/+12
* hush: fix ^C in INTERACTIVE, !EDITING configDenys Vlasenko2020-12-231-6/+29
* hush: revert "make interactive ^C break out of PS2 mode"Denys Vlasenko2020-12-231-22/+3
* hush: fix PS1 prompth in !EDITING configDenys Vlasenko2020-12-231-3/+3
* hush: fix fallout from tweaking ${var:START:LEN} codeDenys Vlasenko2020-12-231-1/+1
* shell: for signal exitcode, use 128 | sig, not 128 + sig - MIPS has signal 128Denys Vlasenko2020-12-231-13/+15
* hush: fix commentDenys Vlasenko2020-12-231-1/+1
* bc: do not allocate line editing state until neededDenys Vlasenko2020-12-211-2/+1
* hush: deal with FIXMEs for corner cases in parameter expansionDenys Vlasenko2020-12-211-18/+34
* hush: remove one redundant getpid() on every startupDenys Vlasenko2020-12-201-8/+6
* hush: code shrinkDenys Vlasenko2020-12-141-1/+1
* hush: if login shell, also source ~/.profileDenys Vlasenko2020-12-131-8/+16
* hush: NOMMU fix for hush-psubst/tick6.testsDenys Vlasenko2020-12-131-0/+7
* hush: fix -c SCRIPT handlingDenys Vlasenko2020-12-131-51/+63
* decrease paddign: gcc-9.3.1 slaps 32-byte alignment on arrays willy-nillyDenys Vlasenko2020-11-301-6/+6
* hush: make interactive ^C break out of PS2 modeDenys Vlasenko2020-11-161-35/+51
* shell: update comments on the status of [[ ]] compatDenys Vlasenko2020-10-311-2/+1
* shell: better support of [[ ]] bashismDenys Vlasenko2020-10-311-17/+40
* hush: output bash-compat killing signal namesDenys Vlasenko2020-10-241-2/+2
* 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