aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* ash: remove limitation on fd# lengthDenys Vlasenko2024-07-121-7/+13
* ash: do not abort interactive mode on >&9999 redirectDenys Vlasenko2024-07-121-4/+16
* ash: remove defunct control character to save a few bytesRon Yorston2024-07-101-12/+12
* ash: fix parsing of alias expansion + bash featuresRon Yorston2024-07-101-6/+6
* ash: fix handling of single-quoted strings in pattern substitutionDenys Vlasenko2024-02-261-0/+5
* ash: initialize basepf.buf in ashzhuyan2023-08-311-1/+1
* Update applet size estimatesDenys Vlasenko2023-07-101-1/+1
* ash: tweak comments, no code changesDenys Vlasenko2023-07-101-6/+7
* ash: remove "volatile" specifier from suppress_intDenys Vlasenko2023-07-101-4/+11
* ash: disable sleep as builtin, closes 15619Denys Vlasenko2023-07-101-5/+17
* ash: disable check for "good" function name, bash does not check thisDenys Vlasenko2023-07-041-8/+9
* shell: move varcmp() to shell_common.h and use it in hushDenys Vlasenko2023-06-171-24/+0
* ash: code shrinkDenys Vlasenko2023-06-171-1/+1
* ash: use-after-free in bash pattern substitutionKarsten Sperling2023-05-181-0/+2
* ash,hush: tab completion of functions and aliasesRon Yorston2023-04-161-4/+28
* ash: code shrink: do not take address of prefix(), allowing it to inlineDenys Vlasenko2023-04-031-8/+4
* ash: code shrink - reuse is_prefixed_with() from libbbDenys Vlasenko2023-04-031-2/+4
* ash: get rid of separate mail_var_path_changed flag variableDenys Vlasenko2023-04-031-10/+9
* ash: fix still-broken new mail detectionDenys Vlasenko2023-04-031-4/+4
* ash: fix broken new mail detectionDenys Vlasenko2023-04-031-1/+0
* ash: code shrinkDenys Vlasenko2023-04-011-3/+3
* ash: exec: Stricter pathopt parsing - lost chunkDenys Vlasenko2023-03-311-1/+1
* ash: improve trap and jobs builtins in child shellsRon Yorston2023-03-311-6/+7
* ash: make EPOCH variables work if RANDOM is disabledRon Yorston2023-03-291-1/+1
* shell: fix SIGWINCH and SIGCHLD (in hush) interrupting line input, closes 15256Denys Vlasenko2023-01-261-1/+2
* ash: trivial code shrinkDenys Vlasenko2023-01-031-1/+1
* shell: fix compile failures in some configsDenys Vlasenko2023-01-031-2/+6
* ash: optional sleep builtinShawn Landden2022-08-271-0/+11
* ash: fix use-after-free in bash pattern substitutionSören Tempel2022-08-021-0/+7
* ash: fix use-after-free in pattern substituon codeDenys Vlasenko2022-08-021-2/+4
* ash: fix ifs cleanup on error pathsDenys Vlasenko2022-08-021-0/+2
* ash,hush: use HOME for tab completion and promptsRon Yorston2022-06-261-4/+3
* ash: do not truncate failed tilde expansion on unknown user namesDenys Vlasenko2022-03-011-3/+1
* ash: fix unsafe use of mempcpyDenys Vlasenko2022-03-011-1/+7
* ash: don't read past end of var in subvareval for bash substitutionsSören Tempel2022-03-011-0/+4
* *: slap on a few ALIGN* where appropriateDenys Vlasenko2022-02-061-1/+1
* ash,hush: fix handling of SIGINT while waiting for interactive inputDenys Vlasenko2022-01-171-9/+30
* shell: add comments about SIGINT-related problemsDenys Vlasenko2022-01-161-5/+8
* libbb: invert the meaning of SETUP_ENV_NO_CHDIR -> SETUP_ENV_CHDIRDenys Vlasenko2022-01-131-1/+1
* ash: ^C with SIG_INGed SIGINT should not exit the shellDenys Vlasenko2022-01-131-1/+7
* reset: better --help textDenys Vlasenko2022-01-121-3/+6
* libbb: code shrink: introduce and use [_]exit_SUCCESS()Denys Vlasenko2022-01-051-1/+1
* shell: tweak --helpDenys Vlasenko2021-10-131-1/+1
* hush: in a comment, document what -i might be doingDenys Vlasenko2021-10-131-3/+2
* Make const ptr assign as function call in clangYU Jincheng2021-10-091-3/+3
* ash: speed up ${x//\*/|} too, make it independent of ASH_OPTIMIZE_FOR_SIZEDenys Vlasenko2021-10-091-6/+12
* ash.c: speedup ${s:} substring (no quotes)Alin Mr2021-10-091-6/+11
* *: generalize "const trick"YU Jincheng2021-10-071-20/+3
* ash: fix compile breakage in !ENABLE_ASH_ALIAS configDenys Vlasenko2021-09-281-2/+2
* ash: introduce bash-like $FUNCNAMEDenys Vlasenko2021-09-151-3/+24