aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.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/+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
* ash: let ignoreeof only affect interactive shellsRon Yorston2021-09-141-3/+4
* ash: stopped jobs should only prevent exit from interactive shellRon Yorston2021-09-141-1/+1
* ash: fix ignoreeof optionRon Yorston2021-09-141-19/+3
* ash: eval: Prevent recursive PS4 expansionDenys Vlasenko2021-09-091-1/+6
* ash: parser: Get rid of PEOADenys Vlasenko2021-09-081-131/+108
* ash: parser: Fix alias expansion after heredoc or newlinesDenys Vlasenko2021-09-081-2/+5
* ash: use pgetc_eatbnl() in more places, take 3Denys Vlasenko2021-09-081-1/+1
* ash: parser: Save and restore heredoclist in expandstrDenys Vlasenko2021-09-081-8/+11
* ash: parser: Fix handling of empty aliasesDenys Vlasenko2021-09-081-21/+15
* ash: LINENO starts from 0 in -c SCRIPT modeDenys Vlasenko2021-09-071-1/+1
* ash: fix LINENO in functionsDenys Vlasenko2021-09-071-12/+6
* ash: eval: Do not cache value of eflag in evaltreeDenys Vlasenko2021-09-071-8/+7
* ash: eval: Check nflag in evaltree instead of cmdloopDenys Vlasenko2021-09-071-1/+4
* ash: add bash-like ERR trap and set -ERoberto A. Foglietta2021-09-071-17/+69
* ash: regressions in process substitutionRon Yorston2021-09-021-3/+7
* ash: speed up ${v//pattern/repl}Denys Vlasenko2021-07-251-7/+10
* ash: speed up ${v//pattern/repl} if !ASH_OPTIMIZE_FOR_SIZEDenys Vlasenko2021-07-221-3/+27
* ash: parser: Fix VSLENGTH parsing with trailing garbageDenys Vlasenko2021-06-251-6/+3
* ash: revert accidental change (should have been separate)Denys Vlasenko2021-06-251-3/+6
* e2fsprogs/*: remove ioctl calling obfuscationDenys Vlasenko2021-06-231-6/+3
* *: 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-0/+4
* ash: add process substitution in bash-compatibility modeRon Yorston2021-06-051-17/+143
* ash: placate -Werror=format-securityDenys Vlasenko2021-02-181-3/+1
* ash: match bash behavior for ${empty_var/*/repl}Denys Vlasenko2021-01-091-3/+3
* ash: fix ${unset_var/pattern/repl}Denys Vlasenko2021-01-091-1/+2
* ash: improve --helpDenys Vlasenko2021-01-041-2/+7
* ash: code shrinkDenys Vlasenko2021-01-031-2/+2
* ash: make a strdup copy of $HISTFILE for line editingDenys Vlasenko2021-01-031-2/+2
* libbb: introduce and use xgettimeofday(), do not truncate 64-bit time_t in sh...Denys Vlasenko2020-12-301-5/+5
* ash: change "clear ungetc counter on syntax errors" fix to match dashDenys Vlasenko2020-12-241-2/+1
* shell: for signal exitcode, use 128 | sig, not 128 + sig - MIPS has signal 128Denys Vlasenko2020-12-231-3/+3
* bc: do not allocate line editing state until neededDenys Vlasenko2020-12-211-2/+1
* ash: clear ungetc counter on syntax errorsDenys Vlasenko2020-12-191-55/+57
* ash: reset SIGHUP earlier: allows HUP traps in .profile, closes 13371Denys Vlasenko2020-12-131-8/+11
* decrease paddign: gcc-9.3.1 slaps 32-byte alignment on arrays willy-nillyDenys Vlasenko2020-11-301-3/+3
* fix warning: label 'out1' defined but not usedCristian Ionescu-Idbohrn2020-11-191-0/+2
* ash: make interactive ^C break out of PS2 modeDenys Vlasenko2020-11-161-4/+3
* shell: update comments on the status of [[ ]] compatDenys Vlasenko2020-10-311-3/+3
* shell: better support of [[ ]] bashismDenys Vlasenko2020-10-311-7/+8
* avoid using strok - eliminates use of hidden global variableDenys Vlasenko2020-10-061-2/+2