aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2018-04-07xargs: use bb_ask_y_confirmation_FILE() instead of homegrown copyDenys Vlasenko
2018-04-07libbb: rename bb_ask -> bb_ask_noecho, bb_ask_confirmation -> bb_ask_y_confir...Denys Vlasenko
2018-04-07telnet: move winsize detection closer to I/O loop, delete non-functioning deb...Denys Vlasenko
2018-04-07ftpd: allow -A if !FTPD_AUTHENTICATION as wellDenys Vlasenko
2018-04-07ftpd: added -A option to disable all authentication, closes 10921Denys Vlasenko
2018-04-07wget,ftpd: shorten and reuse stringsDenys Vlasenko
2018-04-07httpd: do not default to Content-type: application/octet-streamDenys Vlasenko
2018-04-06scripts/kconfig/mconf.c: survive is SIGWINCH is not definedDenys Vlasenko
2018-04-06i386: make stack size optimization selectable, and allow i486 insns (bswap)Denys Vlasenko
2018-04-06placate gcc-8.0.1 warningsDenys Vlasenko
2018-04-06hush: fix "unset PS1/PS2", and put them into initial variable setDenys Vlasenko
2018-04-06sort: smaller and more agressive FEATURE_SORT_OPTIMIZE_MEMORYDenys Vlasenko
2018-04-06hush: if we did match "LINENO" or "OPTIND", stop further comparisonsDenys Vlasenko
2018-04-06hush: consolidate handling of setting/unsetting of PSn, LINENO, OPTINDDenys Vlasenko
2018-04-05hush: update to correctly handle changed var_bash[346].testsDenys Vlasenko
2018-04-05hush: implement "hush -s"Denys Vlasenko
2018-04-05placate gcc 8.0.1 sprintf overflow warnings in config toolsDenys Vlasenko
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-04sort: move misplaced commentDenys Vlasenko
2018-04-04sort: FEATURE_SORT_OPTIMIZE_MEMORYDenys 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-01sed: prevent overflow of length from bb_get_chunk_from_fileQuentin Rameau
2018-04-01libbb: remove unnecessary variable in xmalloc_fgetsQuentin Rameau
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