ash: parser: Do not push token back before parseheredoc
[oweals/busybox.git] / shell / ash.c
2020-02-22 Denys Vlasenkoash: parser: Do not push token back before parseheredoc
2020-02-22 Denys Vlasenkoash: parser: Fix old-style command substitution here...
2020-02-21 Denys Vlasenkoash: expand: Ensure result is escaped in cvtnum
2020-02-21 Denys Vlasenkoash: memalloc: Avoid looping in growstackto
2020-02-20 Denys Vlasenkoash: eval: Only restore exit status on exit/return
2020-02-20 Denys Vlasenkoash: Return without arguments in a trap should use...
2020-02-20 Ron Yorstonash: return exit status of nofork applets (again)
2020-02-20 Denys Vlasenkoash: expand: Merge syntax/quotes in memtodest with...
2020-02-20 Denys Vlasenkoash: eval: Always set localvar_stop
2020-02-20 Denys Vlasenkoash: eval: Replace with listsetvar with mklocal/setvareq
2020-02-20 Denys Vlasenkoash: eval: Fail immediately with redirections errors...
2020-02-20 Denys Vlasenkoash: eval: Add assignment built-in support again
2020-02-18 Denys Vlasenkoash,hush: add comment about masked SIGCHLD, handle...
2020-02-18 Denys Vlasenkoash: jobs: Only clear gotsigchld when waiting for every...
2020-02-18 Denys Vlasenkoash: jobs - Do not block when waiting on SIGCHLD
2020-02-18 Denys Vlasenkoash: eval: Reap zombies after built-in commands and...
2020-02-17 Denys Vlasenkoash: exec: Never rehash regular built-ins
2020-02-17 Denys Vlasenkoash: exec: Stricter pathopt parsing
2020-02-17 Denys Vlasenkoash: exec: Do not allocate stack string in padvance
2020-02-17 Denys Vlasenkoash: memalloc: Add growstackto helper
2020-02-17 Denys Vlasenkoash: parser: Save/restore here-documents in command...
2020-02-17 Denys Vlasenkoash: mkinit: Split reset into exitreset and reset
2020-02-17 Denys Vlasenkoash: expand: Fix trailing newlines processing in backqu...
2020-02-17 Denys Vlasenkoash: parser: Only accept single-digit parameter expansi...
2020-02-16 Denys Vlasenkoash: shell: Fix clang warnings about "string plus integer"
2020-02-16 Denys Vlasenkoash: eval: Use the correct expansion mode for fd redire...
2020-02-16 Denys Vlasenkoash: expand: Fix skipping of command substitution when...
2020-02-16 Denys Vlasenkoash: main: Print \n upon EOF (CTRL-D) when run interact...
2020-02-16 Denys Vlasenkoash: expand: Use HOME in tilde expansion when it is...
2020-02-16 Denys Vlasenkoash: builtin: Mark more regular built-ins
2020-02-16 Denys Vlasenkoash: jobs: Replace some uses of fmtstr with stpcpy...
2020-02-16 Denys Vlasenkoash: output: Fix fmtstr return value
2020-02-16 Denys Vlasenkoash: main: Only set savestatus in exitcmd
2020-02-16 Denys Vlasenkoash: [BUILTIN] Exit without arguments in a trap should...
2020-02-16 Denys Vlasenkoash: parser: Fix incorrect eating of backslash newlines
2020-02-16 Denys Vlasenkoash: use pgetc_eatbnl() in more places, take 2
2020-01-29 Ron Yorstonash,hush: allow builtins to be tab-completed, closes...
2020-01-29 Ron Yorstonash: improve expandstr()
2019-10-25 Denys Vlasenkoclang/llvm 9 fix - do not eliminate a store to a fake...
2019-09-05 Denys Vlasenkoash: add a FIXME comment
2019-08-02 Denys Vlasenkoash: fix set -o to not show "nameless" options
2019-07-31 Ron Yorstonash: only catch unexpected exceptions in PS1 expansion
2019-06-03 Denys Vlasenkoash,hush: show 'c' in $- if run in "sh -c CMD"
2019-06-01 Denys Vlasenkoash: allocate line editing structure only if needed
2019-04-19 Ron Yorstonash: catch error in arithmetic expansion in PS1
2019-04-19 Ron Yorstonash: prevent error in backquotes in PS1 from exiting...
2019-04-16 Ron Yorstonash: add bash-compatible EPOCH variables
2019-04-16 Ron Yorstonash: an unset dynamic variable should not be dynamic
2019-04-02 Ron Yorstonash: distinguish 'wait -n' from other bashisms
2019-03-27 Denys Vlasenkoash: add "wait -n" bashism
2019-02-25 Ron Yorstonash: eval: avoid leaking memory associated with redirec...
2018-12-28 Denys Vlasenkoconfig: update size information
2018-12-08 Denys Vlasenkoinetd: suppress aliasing warning
2018-12-08 Denys Vlasenkosuppress gcc 8 aliasing warnings
2018-11-27 Ron Yorstonhush: allow hush to run embedded scripts
2018-11-20 Christoph Schulzash: reset tokpushback before prompting while parsing...
2018-11-17 Ron YorstonTreat custom and applet scripts as applets
2018-11-16 Ron Yorstonash: ensure variables are fully initialised when unset
2018-11-06 Ron Yorstonash: minor fixes
2018-11-01 Denys Vlasenkoash: fix thinko in last commit
2018-11-01 Ron Yorstonash: in tryexec(), ensure we don't try to run embedded...
2018-11-01 Ron Yorstonash: recognize embedded scripts in SH_STANDALONE mode
2018-11-01 Denys Vlasenkoclaenups for previous commit
2018-11-01 Denys Vlasenkoash: allow shell scripts to be embedded in the binary
2018-08-07 Denys Vlasenkoash: expand: Do not quote backslashes in unquoted param...
2018-08-05 Denys Vlasenkoash: exec: Return 126 on most errors in shellexec
2018-08-05 Denys Vlasenkoash: eval: Restore input files in evalcommand
2018-08-05 Denys Vlasenkoash: parser: Fix parsing of ${}
2018-08-05 Denys Vlasenkoash,hush: fold shell_builtin_read() way-too-many params...
2018-08-05 Denys Vlasenkoash: expand: Fix ghost fields with unquoted $@/$*
2018-08-05 Denys Vlasenkoash: var: Set IFS to fixed value at start time
2018-08-05 Denys Vlasenkoash: eval: Variable assignments on functions are no...
2018-08-04 Denys Vlasenkoash,hush: properly handle ${v//pattern/repl} if pattern...
2018-07-24 Denys Vlasenkohush: add "heredoc.tests" from ash, tweak ash "is a...
2018-04-14 Denys Vlasenkoash: expand: Fix buffer overflow in expandmeta
2018-04-11 Denys Vlasenkoash: parser: Allow newlines within parameter substitution
2018-04-10 Denys Vlasenkohush: do not drop backslash from eval 'echo ok\'
2018-04-10 Denys Vlasenkoshell: add comments about [[, no code changes
2018-04-09 Denys Vlasenkoash: if "[[" bashism is not supported, do not handle...
2018-04-09 Denys Vlasenkoash: trivial code shrink
2018-04-08 Denys Vlasenkobzip2: fix two crashes on corrupted archives
2018-04-05 Denys Vlasenkohush: implement "hush -s"
2018-04-04 Denys Vlasenkoash: unbreak PS1 parsing after "ash: parser: Add syntax...
2018-04-02 Denys Vlasenkoash: parser: Fix parameter expansion inside inner doubl...
2018-04-02 Denys Vlasenkoash: expand: Fix bugs with words connected to the right...
2018-04-02 Denys Vlasenkoash: redir: Fix typo in noclobber code
2018-04-02 Denys Vlasenkoash: parser: Fix single-quoted patterns in here-documents
2018-04-02 Denys Vlasenkoash: parser: Add syntax stack for recursive parsing
2018-04-01 Denys Vlasenkoparser: Fix backquote support in here-document EOF...
2018-04-01 Denys Vlasenkoash,hush: handle a few more bkslash-newline cases
2018-03-31 Denys Vlasenkoash: use pgetc_eatbnl() in more places
2018-03-31 Martijn Dekkerash: 'nolog' and 'debug' options cause "$-" to wreak...
2018-03-30 Denys Vlasenkoash: fix "char == CTLfoo" comparison signedness bug
2018-03-30 Denys Vlasenkoash: use F_DUPFD_CLOEXEC and O_CLOEXEC
2018-03-28 Denys Vlasenkoash,hush: fix "saved" redirected fds still visible...
2018-02-13 Denys Vlasenkoash : fix double-quoted "\z" handling
2018-01-28 Denys Vlasenkoash: make it possible to disable "const global ptr...
2018-01-27 Denys Vlasenkoash: add LINENO support
2018-01-27 Denys Vlasenkohush: add HUSH_BASH_SOURCE_CURDIR config option, to...
2018-01-26 Denys Vlasenkoash: introduce a config option to search current direct...
next