aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c
AgeCommit message (Expand)Author
2018-12-28config: update size informationDenys Vlasenko
2018-12-08inetd: suppress aliasing warningDenys Vlasenko
2018-12-08suppress gcc 8 aliasing warningsDenys Vlasenko
2018-11-27hush: allow hush to run embedded scriptsRon Yorston
2018-11-20ash: reset tokpushback before prompting while parsing heredocChristoph Schulz
2018-11-17Treat custom and applet scripts as appletsRon Yorston
2018-11-16ash: ensure variables are fully initialised when unsetRon Yorston
2018-11-06ash: minor fixesRon Yorston
2018-11-01ash: fix thinko in last commitDenys Vlasenko
2018-11-01ash: in tryexec(), ensure we don't try to run embedded scripts as appletsRon Yorston
2018-11-01ash: recognize embedded scripts in SH_STANDALONE modeRon Yorston
2018-11-01claenups for previous commitDenys Vlasenko
2018-11-01ash: allow shell scripts to be embedded in the binaryDenys Vlasenko
2018-08-07ash: expand: Do not quote backslashes in unquoted parameter expansionDenys Vlasenko
2018-08-05ash: exec: Return 126 on most errors in shellexecDenys Vlasenko
2018-08-05ash: eval: Restore input files in evalcommandDenys Vlasenko
2018-08-05ash: parser: Fix parsing of ${}Denys Vlasenko
2018-08-05ash,hush: fold shell_builtin_read() way-too-many params into a struct paramDenys Vlasenko
2018-08-05ash: expand: Fix ghost fields with unquoted $@/$*Denys Vlasenko
2018-08-05ash: var: Set IFS to fixed value at start timeDenys Vlasenko
2018-08-05ash: eval: Variable assignments on functions are no longer persistentDenys Vlasenko
2018-08-04ash,hush: properly handle ${v//pattern/repl} if pattern starts with /Denys Vlasenko
2018-07-24hush: add "heredoc.tests" from ash, tweak ash "is a function" messageDenys Vlasenko
2018-04-14ash: expand: Fix buffer overflow in expandmetaDenys Vlasenko
2018-04-11ash: parser: Allow newlines within parameter substitutionDenys Vlasenko
2018-04-11hush: do not drop backslash from eval 'echo ok\'Denys Vlasenko
2018-04-10shell: add comments about [[, no code changesDenys Vlasenko
2018-04-10ash: if "[[" bashism is not supported, do not handle it anywhereDenys Vlasenko
2018-04-10ash: trivial code shrinkDenys Vlasenko
2018-04-08bzip2: fix two crashes on corrupted archivesDenys Vlasenko
2018-04-05hush: implement "hush -s"Denys Vlasenko
2018-04-04ash: unbreak PS1 parsing after "ash: parser: Add syntax stack..." commitDenys Vlasenko
2018-04-02ash: parser: Fix parameter expansion inside inner double quotesDenys 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-02ash: parser: Add syntax stack for recursive parsingDenys 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-31ash: use pgetc_eatbnl() in more placesDenys Vlasenko
2018-03-31ash: 'nolog' and 'debug' options cause "$-" to wreak havocMartijn Dekker
2018-03-30ash: fix "char == CTLfoo" comparison signedness bugDenys Vlasenko
2018-03-30ash: use F_DUPFD_CLOEXEC and O_CLOEXECDenys Vlasenko
2018-03-28ash,hush: fix "saved" redirected fds still visible in childrenDenys Vlasenko
2018-02-13ash : fix double-quoted "\z" handlingDenys Vlasenko
2018-01-28ash: make it possible to disable "const global ptr" optimizationDenys 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-26ash: introduce a config option to search current directory for sourced filesDenys Vlasenko
2018-01-24ash: add support for command_not_found_handle hook function (bashism)William Pitcock