aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* hush: fix G.argv0_for_re_execing to avoid endless loopHajime Tazaki2024-12-091-0/+3
* libbb: modify find_executable() to not temporarily write to PATHDenys Vlasenko2024-10-081-21/+14
* hush: fix "type ./cat" and "command -v ./cat" to not scan PATHDenys Vlasenko2024-10-071-13/+33
* hush: make "test -x" use cached groupinfoDenys Vlasenko2024-10-071-7/+22
* hush: whitespace and comment fixesDenys Vlasenko2024-09-281-43/+27
* hush: do not exit interactive shell on some redirection errorsDenys Vlasenko2024-07-131-12/+39
* hush: fix "exec 3>FILE" aborting if 3 is exactly the next free fdDenys Vlasenko2024-07-131-4/+9
* hush: avoid duplicate fcntl(F_SETFD, FD_CLOEXEC) during initDenys Vlasenko2024-07-131-8/+3
* hush: detect when terminating "done"/"fi" is missingDenys Vlasenko2024-02-251-1/+10
* hush: set G.ifs sooner (prevents segfault)Denys Vlasenko2024-02-251-28/+34
* sleep: fix "sleep -- ARGS"Denys Vlasenko2023-10-021-8/+0
* Update applet size estimatesDenys Vlasenko2023-07-101-1/+1
* hush: fix a compile failureDenys Vlasenko2023-07-081-1/+1
* ash: disable check for "good" function name, bash does not check thisDenys Vlasenko2023-07-041-1/+6
* hush: quote values in "readonly" outputDenys Vlasenko2023-07-031-4/+11
* shell: move varcmp() to shell_common.h and use it in hushDenys Vlasenko2023-06-171-26/+16
* hush: fix expansion of space in "a=${a:+$a }c" constructDenys Vlasenko2023-06-121-1/+1
* hush: make "false" built-inDenys Vlasenko2023-05-251-0/+7
* hush: fix ELIF cmd1;cmd2 THEN ... not executing cmd2, closes 15571Denys Vlasenko2023-05-251-8/+16
* hush: add comment about abort on syntax error %{^}Denys Vlasenko2023-05-091-0/+1
* hush: fix an interactive abort on errorDenys Vlasenko2023-05-081-0/+8
* ash,hush: tab completion of functions and aliasesRon Yorston2023-04-161-2/+12
* hush: quote variable values printed by "set" (match ash behavior)Denys Vlasenko2023-04-131-2/+17
* hush (NOMMU): fix LINENO in execed childrenDenys Vlasenko2023-04-011-0/+15
* hush: speed up "big heredoc" codeDenys Vlasenko2023-04-011-7/+15
* hush: add TODO commentDenys Vlasenko2023-04-011-0/+3
* hush: restore SIGHUP handling, this time explain why we do what we doDenys Vlasenko2023-01-301-20/+28
* hush: restore tty pgrp on SIGHUPDenys Vlasenko2023-01-301-5/+8
* hush: remove special handling of SIGHUPDenys Vlasenko2023-01-301-18/+20
* shell: fix SIGWINCH and SIGCHLD (in hush) interrupting line input, closes 15256Denys Vlasenko2023-01-261-2/+8
* hush: code shrinkDenys Vlasenko2023-01-031-4/+9
* shell: fix compile failures in some configsDenys Vlasenko2023-01-031-1/+5
* ash,hush: use HOME for tab completion and promptsRon Yorston2022-06-261-3/+2
* *: slap on a few ALIGN_PTR where appropriateDenys Vlasenko2022-02-061-5/+5
* ash,hush: fix handling of SIGINT while waiting for interactive inputDenys Vlasenko2022-01-171-20/+47
* libbb: invert the meaning of SETUP_ENV_NO_CHDIR -> SETUP_ENV_CHDIRDenys Vlasenko2022-01-131-1/+1
* libbb: code shrink: introduce and use [_]exit_SUCCESS()Denys Vlasenko2022-01-051-2/+2
* 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