| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | hush: support "f() (cmd)" functions | Denys Vlasenko | 2018-04-03 | 1 | -3/+2 |
* | hush: fix "set -e; false || x=1; echo OK" | Denys Vlasenko | 2018-04-03 | 2 | -0/+14 |
* | hush: fix a backslash-removal bug in case | Denys Vlasenko | 2018-04-02 | 2 | -0/+16 |
* | ash: expand: Fix bugs with words connected to the right of $@ | Denys Vlasenko | 2018-04-02 | 2 | -0/+3 |
* | ash: parser: Add syntax stack for recursive parsing | Denys Vlasenko | 2018-04-02 | 8 | -12/+16 |
* | hush: add a comment where we differ from bash wrt heredoc EOF mark handling | Denys Vlasenko | 2018-04-01 | 2 | -15/+0 |
* | parser: Fix backquote support in here-document EOF mark | Denys Vlasenko | 2018-04-01 | 2 | -0/+15 |
* | ash,hush: handle a few more bkslash-newline cases | Denys Vlasenko | 2018-04-01 | 4 | -0/+20 |
* | shells: fix var_LINENO1.tests false positive, add it to ash tests too | Denys Vlasenko | 2018-03-31 | 1 | -1/+1 |
* | ash: use pgetc_eatbnl() in more places | Denys Vlasenko | 2018-03-31 | 2 | -0/+33 |
* | ash,hush: new test dollar_repl_slash_bash2.tests | Denys Vlasenko | 2018-03-30 | 2 | -0/+3 |
* | ash,hush: fix "saved" redirected fds still visible in children | Denys Vlasenko | 2018-03-28 | 6 | -0/+33 |
* | hush: fix a='a\\'; echo "${a%\\\\}" | Denys Vlasenko | 2018-03-02 | 4 | -0/+14 |
* | shell: tweak bkslash_in_varexp.tests, add bkslash_in_varexp1.tests | Denys Vlasenko | 2018-03-02 | 3 | -1/+22 |
* | shell: two new tests, both fail for ash and hush | Denys Vlasenko | 2018-03-02 | 4 | -0/+22 |
* | ash : fix double-quoted "\z" handling | Denys Vlasenko | 2018-02-13 | 2 | -0/+48 |
* | shell: handle $((NUM++...) like bash does. Closes 10706 | Denys Vlasenko | 2018-01-28 | 4 | -6/+20 |
* | hush: fix two corner cases in ${v/pattern/repl}. Closes 10686 | Denys Vlasenko | 2018-01-25 | 4 | -0/+10 |
* | hush: implement $LINENO bashism | Denys Vlasenko | 2018-01-19 | 2 | -0/+14 |
* | shell: echo ${?:0} was fixed sometime ago, enable it in tests | Denys Vlasenko | 2018-01-13 | 2 | -1/+2 |
* | hush: fix raw ^C handlisg in single-quoted strings | Denys Vlasenko | 2018-01-13 | 4 | -6/+5 |
* | hush: add command2.tests from ash tests | Denys Vlasenko | 2018-01-12 | 2 | -0/+8 |
* | hush: fix handling of ^C in eval | Denys Vlasenko | 2018-01-11 | 2 | -0/+5 |
* | hush: fix handling of raw ^C in scripts: "echo ^C" | Denys Vlasenko | 2018-01-11 | 2 | -0/+4 |
* | ash: fix nofork bug where environment is not properly passed to a command | Denys Vlasenko | 2017-11-03 | 2 | -0/+24 |
* | hush: fix comment parsing in `cmd`, closes 10421 | Denys Vlasenko | 2017-10-22 | 2 | -0/+17 |
* | hush: fix false positive in unset.tests | Denys Vlasenko | 2017-08-29 | 1 | -0/+6 |
* | hush: fix "getopts" builtin to not be upset by other builtins calling getopt() | Denys Vlasenko | 2017-08-29 | 2 | -0/+35 |
* | shell: tweak getopts tests, no code changes | Denys Vlasenko | 2017-08-13 | 5 | -2/+32 |
* | hush: implement "silent" optstrings of ":opts" | Denys Vlasenko | 2017-08-11 | 2 | -0/+29 |
* | hush: add a test which fails due to uclibc bug in getopt() | Denys Vlasenko | 2017-08-11 | 2 | -0/+64 |
* | shell: add OPTARG poisoning to getopt_optarg.tests | Denys Vlasenko | 2017-08-11 | 1 | -0/+2 |
* | hush: teach getopts to set/unset OPTARG | Denys Vlasenko | 2017-08-11 | 3 | -1/+34 |
* | hush: getopts builtin | Denys Vlasenko | 2017-08-11 | 4 | -0/+123 |
* | nofork: fix a bug uncovered by hush testsuite (forgotten fflush) | Denys Vlasenko | 2017-08-03 | 1 | -1/+1 |
* | hush: do not accept "if() { echo; }" function def | Denys Vlasenko | 2017-08-02 | 2 | -0/+12 |
* | hush: fix "true | func_with_return" not allowing return. | Denys Vlasenko | 2017-07-31 | 4 | -0/+8 |
* | hush: functions have priority over builtins (!) | Denys Vlasenko | 2017-07-31 | 2 | -0/+10 |
* | ash: significant overhaul of redirect saving logic | Denys Vlasenko | 2017-07-31 | 5 | -2/+15 |
* | hush: fix handling of empty heredoc EOF marker | Denys Vlasenko | 2017-07-29 | 2 | -0/+18 |
* | shell: remove ${#+} tests, it is not a valid construct | Denys Vlasenko | 2017-07-26 | 2 | -3/+8 |
* | hush: fix ${##}, ${#?}, ${#!} handling | Denys Vlasenko | 2017-07-26 | 3 | -1/+43 |
* | ash: [VAR] Move unsetvar functionality into setvareq | Denys Vlasenko | 2017-07-25 | 2 | -4/+7 |
* | ash: import param_expand_default.tests from hush | Denys Vlasenko | 2017-07-25 | 1 | -2/+4 |
* | hush: treat ${#?} as "length of $?" | Denys Vlasenko | 2017-07-25 | 2 | -2/+2 |
* | ash: add a few tests from hush-vars/* | Denys Vlasenko | 2017-07-25 | 4 | -23/+32 |
* | shell: some additions to *sh-misc/* tests | Denys Vlasenko | 2017-07-24 | 1 | -0/+4 |
* | hush: fix a case when redirect to a closed fd #1 is not restoring (closing) it | Denys Vlasenko | 2017-07-24 | 2 | -0/+8 |
* | shell: optional support for read -t N.NNN, closes 10101 | Denys Vlasenko | 2017-07-20 | 2 | -0/+17 |
* | hush: fix readonly2.tests failure | Denys Vlasenko | 2017-07-18 | 2 | -0/+2 |