aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* ash: regressions in process substitutionRon Yorston2021-09-301-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
* ash: jobs: Fix waitcmd busy loopDenys Vlasenko2020-09-291-57/+34
* ash: jobs: Fix infinite loop in waitprocDenys Vlasenko2020-09-291-6/+19
* ash: remove a tentative TODO, it's a wrong ideaDenys Vlasenko2020-09-291-1/+1
* nologin: make it possible to build it as single appletDenys Vlasenko2020-06-241-19/+22
* ash,hush: drop pointer check before calls to show_historyRon Yorston2020-04-301-2/+1
* ash: fix build failure when command built-in is disabledRon Yorston2020-04-301-1/+3
* ash: expand: Fix multiple issues with EXP_DISCARD in evalvarDenys Vlasenko2020-02-241-14/+14
* ash: expand: Do not reprocess data when expanding wordsDenys Vlasenko2020-02-241-178/+154
* ash: move TRACE statement in evalcommand()Ron Yorston2020-02-241-1/+2
* ash: rename some function parameters to match dashDenys Vlasenko2020-02-241-29/+29
* ash: rename stack_nputstr() back to stnputs() to match dashDenys Vlasenko2020-02-241-3/+3
* ash: Expand here-documents in the current shell environmentDenys Vlasenko2020-02-221-13/+16
* ash: parser: Do not push token back before parseheredocDenys Vlasenko2020-02-221-1/+4
* ash: parser: Fix old-style command substitution here-document crashDenys Vlasenko2020-02-221-1/+1
* ash: expand: Ensure result is escaped in cvtnumDenys Vlasenko2020-02-211-25/+24
* ash: memalloc: Avoid looping in growstacktoDenys Vlasenko2020-02-211-7/+7
* ash: eval: Only restore exit status on exit/returnDenys Vlasenko2020-02-201-48/+51
* ash: Return without arguments in a trap should use status outside trapsDenys Vlasenko2020-02-201-5/+18
* ash: return exit status of nofork applets (again)Ron Yorston2020-02-201-1/+1
* ash: expand: Merge syntax/quotes in memtodest with flagsDenys Vlasenko2020-02-201-21/+19
* ash: eval: Always set localvar_stopDenys Vlasenko2020-02-201-11/+12
* ash: eval: Replace with listsetvar with mklocal/setvareqDenys Vlasenko2020-02-201-35/+28