aboutsummaryrefslogtreecommitdiff
path: root/shell
AgeCommit message (Expand)Author
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
2018-01-25ash testsuite: add two hush tests from last commitDenys Vlasenko
2018-01-25hush: fix two corner cases in ${v/pattern/repl}. Closes 10686Denys Vlasenko
2018-01-25hush: fix handling of $_ (so far it's an ordinary variable, no special meaning)Denys Vlasenko
2018-01-24ash: add support for command_not_found_handle hook function (bashism)William Pitcock
2018-01-19hush: fix a case where EXIT trap may modify its code mid-flightDenys Vlasenko
2018-01-19hush: fix build if !BASH_LINENO_VARDenys Vlasenko
2018-01-19hush: implement $LINENO bashismDenys Vlasenko
2018-01-15ash: a bit of NOFORK code should only be active if FEATURE_SH_STANDALONE=yDenys Vlasenko
2018-01-13shell: echo ${?:0} was fixed sometime ago, enable it in testsDenys Vlasenko
2018-01-13hush: fix raw ^C handlisg in single-quoted stringsDenys Vlasenko
2018-01-12hush: add command2.tests from ash testsDenys Vlasenko
2018-01-12hush: tweak command -vV printing code, no logic changesDenys Vlasenko
2018-01-12hush: implement "command -v -V"Denys Vlasenko
2018-01-11hush: implement "command" builtin (no options are supported yet)Denys Vlasenko
2018-01-11hush: fix handling of ^C in evalDenys Vlasenko