aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c
AgeCommit message (Expand)Author
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
2018-01-15ash: a bit of NOFORK code should only be active if FEATURE_SH_STANDALONE=yDenys Vlasenko
2018-01-10ash: ALWAYS_INLINE grabstackblock()Denys Vlasenko
2018-01-10ash: make ${v:N:M} more robust for very large M by clamping to MIN/MAX_INTDenys Vlasenko
2018-01-09ash: add comment explaining last changeDenys Vlasenko
2018-01-09ash: fix var_bash5.tests - ${VAR/pattern/repl} constructDenys Vlasenko
2018-01-07ash: fail if 'shift' operand is out of rangeIngo van Lil
2017-12-31randomconfig fixesDenys Vlasenko
2017-11-03ash: fix nofork bug where environment is not properly passed to a commandDenys Vlasenko
2017-11-02ash: retain envvars with bad names in initial environment. Closes 10231Denys Vlasenko
2017-10-12whitespace fixesDenys Vlasenko
2017-10-12typo fixDenys Vlasenko
2017-10-12ash: survive failures in $PS1 expansion. Closes 10371Denys Vlasenko
2017-09-29use %m printf specifier where appropriateDenys Vlasenko
2017-08-23ash: more s/error/perror/ for better error reportingDenys Vlasenko
2017-08-23ash: when cd fails, say whyJohannes Schindelin
2017-08-23ash: report reason when a script file could not be openedJohannes Schindelin
2017-08-15ash: unset OPTARG if getopts exits 1, support OPTERR=0 behaviorDenys Vlasenko
2017-08-15ash,hush: comment and debug tweaks, no code changesDenys Vlasenko
2017-08-14ash: one "current line = 1" might be missing, fix thatDenys Vlasenko