| Commit message (Expand) | Author | Age | Files | Lines |
* | hush: protect against self-modifying trap code | Denys Vlasenko | 2018-01-30 | 1 | -1/+3 |
* | ash: make it possible to disable "const global ptr" optimization | Denys Vlasenko | 2018-01-28 | 1 | -3/+16 |
* | shell: handle $((NUM++...) like bash does. Closes 10706 | Denys Vlasenko | 2018-01-28 | 9 | -14/+57 |
* | ash: add LINENO support | Denys Vlasenko | 2018-01-27 | 4 | -534/+99 |
* | hush: add HUSH_BASH_SOURCE_CURDIR config option, to be on par with ash | Denys Vlasenko | 2018-01-27 | 2 | -3/+10 |
* | hush: fix dot builtin to not search current directory | Denys Vlasenko | 2018-01-27 | 1 | -0/+5 |
* | ash: introduce a config option to search current directory for sourced files | Denys Vlasenko | 2018-01-26 | 1 | -1/+12 |
* | ash testsuite: add two hush tests from last commit | Denys Vlasenko | 2018-01-25 | 4 | -0/+10 |
* | hush: fix two corner cases in ${v/pattern/repl}. Closes 10686 | Denys Vlasenko | 2018-01-25 | 5 | -2/+21 |
* | hush: fix handling of $_ (so far it's an ordinary variable, no special meaning) | Denys Vlasenko | 2018-01-25 | 1 | -10/+17 |
* | ash: add support for command_not_found_handle hook function (bashism) | William Pitcock | 2018-01-24 | 1 | -1/+23 |
* | hush: fix a case where EXIT trap may modify its code mid-flight | Denys Vlasenko | 2018-01-19 | 1 | -1/+1 |
* | hush: fix build if !BASH_LINENO_VAR | Denys Vlasenko | 2018-01-19 | 1 | -8/+13 |
* | hush: implement $LINENO bashism | Denys Vlasenko | 2018-01-19 | 3 | -2/+68 |
* | ash: a bit of NOFORK code should only be active if FEATURE_SH_STANDALONE=y | Denys Vlasenko | 2018-01-15 | 1 | -1/+3 |
* | shell: echo ${?:0} was fixed sometime ago, enable it in tests | Denys Vlasenko | 2018-01-13 | 4 | -2/+4 |
* | hush: fix raw ^C handlisg in single-quoted strings | Denys Vlasenko | 2018-01-13 | 9 | -12/+15 |
* | hush: add command2.tests from ash tests | Denys Vlasenko | 2018-01-12 | 2 | -0/+8 |
* | hush: tweak command -vV printing code, no logic changes | Denys Vlasenko | 2018-01-12 | 1 | -3/+5 |
* | hush: implement "command -v -V" | Denys Vlasenko | 2018-01-12 | 1 | -31/+84 |
* | hush: implement "command" builtin (no options are supported yet) | Denys Vlasenko | 2018-01-11 | 1 | -1/+16 |
* | hush: fix handling of ^C in eval | Denys Vlasenko | 2018-01-11 | 5 | -4/+36 |
* | hush: fix handling of raw ^C in scripts: "echo ^C" | Denys Vlasenko | 2018-01-11 | 5 | -4/+27 |
* | hush: remove dead code | Denys Vlasenko | 2018-01-11 | 1 | -15/+0 |
* | ash: ALWAYS_INLINE grabstackblock() | Denys Vlasenko | 2018-01-10 | 1 | -1/+1 |
* | ash: make ${v:N:M} more robust for very large M by clamping to MIN/MAX_INT | Denys Vlasenko | 2018-01-10 | 1 | -13/+25 |
* | ash: add comment explaining last change | Denys Vlasenko | 2018-01-09 | 1 | -6/+6 |
* | ash: fix var_bash5.tests - ${VAR/pattern/repl} construct | Denys Vlasenko | 2018-01-09 | 1 | -25/+72 |
* | ash: fail if 'shift' operand is out of range | Ingo van Lil | 2018-01-07 | 1 | -1/+1 |
* | randomconfig fixes | Denys Vlasenko | 2017-12-31 | 2 | -6/+9 |
* | ash: fix nofork bug where environment is not properly passed to a command | Denys Vlasenko | 2017-11-03 | 5 | -5/+88 |
* | ash: retain envvars with bad names in initial environment. Closes 10231 | Denys Vlasenko | 2017-11-02 | 1 | -4/+22 |
* | hush: fix comment parsing in `cmd`, closes 10421 | Denys Vlasenko | 2017-10-22 | 5 | -4/+47 |
* | whitespace fixes | Denys Vlasenko | 2017-10-12 | 1 | -3/+3 |
* | typo fix | Denys Vlasenko | 2017-10-12 | 1 | -1/+1 |
* | ash: survive failures in $PS1 expansion. Closes 10371 | Denys Vlasenko | 2017-10-12 | 1 | -1/+18 |
* | use %m printf specifier where appropriate | Denys Vlasenko | 2017-09-29 | 1 | -8/+1 |
* | regularize format of source file headers, no code changes | Denys Vlasenko | 2017-09-18 | 1 | -6/+6 |
* | hush: fix false positive in unset.tests | Denys Vlasenko | 2017-08-29 | 1 | -0/+6 |
* | hush: GETOPT_RESET() _after_ getopts too. | Denys Vlasenko | 2017-08-29 | 2 | -3/+4 |
* | hush: reuse "OPTIND=..." string | Denys Vlasenko | 2017-08-29 | 1 | -1/+2 |
* | hush: fix "getopts" builtin to not be upset by other builtins calling getopt() | Denys Vlasenko | 2017-08-29 | 5 | -15/+133 |
* | ash: more s/error/perror/ for better error reporting | Denys Vlasenko | 2017-08-23 | 1 | -5/+5 |
* | ash: when cd fails, say why | Johannes Schindelin | 2017-08-23 | 1 | -1/+1 |
* | ash: report reason when a script file could not be opened | Johannes Schindelin | 2017-08-23 | 1 | -1/+1 |
* | ash: stage backported LINENO support as a separate patch | Denys Vlasenko | 2017-08-17 | 1 | -0/+498 |
* | hush: trivial code shrink in builtin_getopts | Denys Vlasenko | 2017-08-17 | 1 | -4/+5 |
* | ash: unset OPTARG if getopts exits 1, support OPTERR=0 behavior | Denys Vlasenko | 2017-08-15 | 1 | -2/+11 |
* | ash,hush: comment and debug tweaks, no code changes | Denys Vlasenko | 2017-08-15 | 2 | -3/+4 |
* | ash: one "current line = 1" might be missing, fix that | Denys Vlasenko | 2017-08-14 | 1 | -4/+5 |