aboutsummaryrefslogtreecommitdiff
path: root/shell
AgeCommit message (Expand)Author
2018-04-05hush: fix a few more corner cases with empty-expanding `cmds`Denys Vlasenko
2018-04-05hush: fix corner cases with exec in empty expansionsDenys Vlasenko
2018-04-05hush: less mind-bending set_vars_and_save_old()Denys Vlasenko
2018-04-05hush: "no logic changes" in last commit was not true, fix it upDenys Vlasenko
2018-04-05hush: make run_pipe code simpler to understand, no logic changesDenys Vlasenko
2018-04-05hush: fix a bug where we don't properly handle f() { a=A; b=B; }; a= fDenys Vlasenko
2018-04-04hush: make var nesting code independent of "local" supportDenys Vlasenko
2018-04-04hush: fix for readonly vars in "ro=A ro=B cmd" caseDenys Vlasenko
2018-04-04ash: unbreak PS1 parsing after "ash: parser: Add syntax stack..." commitDenys Vlasenko
2018-04-03hush: support "f() (cmd)" functionsDenys Vlasenko
2018-04-03hush: fix mishandling of "true | f() { echo QWE; }"Denys Vlasenko
2018-04-03hush: fix "set -e; false || x=1; echo OK"Denys Vlasenko
2018-04-03hush: one-word, no-globbing handling of local/export/readonly argsDenys Vlasenko
2018-04-02ash: parser: Fix parameter expansion inside inner double quotesDenys Vlasenko
2018-04-02hush: fix a backslash-removal bug in caseDenys Vlasenko
2018-04-02ash: expand: Fix bugs with words connected to the right of $@Denys Vlasenko
2018-04-02ash: redir: Fix typo in noclobber codeDenys Vlasenko
2018-04-02ash: parser: Fix single-quoted patterns in here-documentsDenys Vlasenko
2018-04-02hush: remove stray debugging printoutDenys Vlasenko
2018-04-02ash: parser: Add syntax stack for recursive parsingDenys Vlasenko
2018-04-01hush: update information comment about heredoc discrepancyDenys Vlasenko
2018-04-01libbb: new function bb_die_memory_exhaustedDenys Vlasenko
2018-04-01hush: add a comment where we differ from bash wrt heredoc EOF mark handlingDenys Vlasenko
2018-04-01parser: Fix backquote support in here-document EOF markDenys Vlasenko
2018-04-01ash,hush: handle a few more bkslash-newline casesDenys Vlasenko
2018-03-31shells: fix var_LINENO1.tests false positive, add it to ash tests tooDenys Vlasenko
2018-03-31hush: fix heredoc_bkslash_newline1.tests failureDenys Vlasenko
2018-03-31ash: use pgetc_eatbnl() in more placesDenys Vlasenko
2018-03-31ash: 'nolog' and 'debug' options cause "$-" to wreak havocMartijn Dekker
2018-03-31hush: fix a signedness bugDenys Vlasenko
2018-03-30ash,hush: new test dollar_repl_slash_bash2.testsDenys Vlasenko
2018-03-30ash: fix "char == CTLfoo" comparison signedness bugDenys Vlasenko
2018-03-30ash: use F_DUPFD_CLOEXEC and O_CLOEXECDenys Vlasenko
2018-03-28hush: add a FIXME commentDenys Vlasenko
2018-03-28ash,hush: fix "saved" redirected fds still visible in childrenDenys Vlasenko
2018-03-06hush: code shrinkDenys Vlasenko
2018-03-02hush: fix a='a\\'; echo "${a%\\\\}"Denys Vlasenko
2018-03-02shell: tweak bkslash_in_varexp.tests, add bkslash_in_varexp1.testsDenys Vlasenko
2018-03-02shell: two new tests, both fail for ash and hushDenys Vlasenko
2018-02-13hush: simplify process_command_subs()Denys Vlasenko
2018-02-13ash : fix double-quoted "\z" handlingDenys Vlasenko
2018-02-08hush: probably fixing a bug in last LINENO fixDenys Vlasenko
2018-02-08hush: LINENO fixDenys Vlasenko
2018-01-30hush: protect against self-modifying trap codeDenys Vlasenko
2018-01-28ash: make it possible to disable "const global ptr" optimizationDenys Vlasenko
2018-01-28shell: handle $((NUM++...) like bash does. Closes 10706Denys Vlasenko
2018-01-27ash: add LINENO supportDenys Vlasenko
2018-01-27hush: add HUSH_BASH_SOURCE_CURDIR config option, to be on par with ashDenys Vlasenko
2018-01-27hush: fix dot builtin to not search current directoryDenys Vlasenko
2018-01-26ash: introduce a config option to search current directory for sourced filesDenys Vlasenko