aboutsummaryrefslogtreecommitdiff
path: root/shell
AgeCommit message (Expand)Author
2018-11-01ash: allow shell scripts to be embedded in the binaryDenys Vlasenko
2018-08-14hush: tweak comment, no code changesDenys Vlasenko
2018-08-11hush: add a comment on how globbing (should) workDenys Vlasenko
2018-08-07ash: expand: Do not quote backslashes in unquoted parameter expansionDenys Vlasenko
2018-08-05hush: adopt ash's quote_in_varexp1.testsDenys 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-05hush: set IFS to default on startupDenys Vlasenko
2018-08-05hush: fix fallout from FILE->HFILE conversionDenys 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-31hush: speed up ${var:+ARG} for literal ARGsDenys Vlasenko
2018-07-28hush: fix another case where empty "for" wasn't setting exitcode to 0Denys Vlasenko
2018-07-28hush: disable debug_indent increment/decrement for HUSH_DEBUG < 2 buildsDenys Vlasenko
2018-07-28hush: make "set -x" output don't redirectable when fd#2 redirectedDenys Vlasenko
2018-07-27hush: make "set -x" output closer to bashDenys Vlasenko
2018-07-27hush: fix "set -x" output prefix overlapping for v="..`cmd`.." caseDenys Vlasenko
2018-07-27hush: in some cases, expand_on_ifs() relied of uninitialized memoryDenys Vlasenko
2018-07-26hush: improve set -x: make "+++" indent level increase in `cmd` and eval.Denys Vlasenko
2018-07-24hush: fix/explain corner cases of redirection colliding with script fdDenys Vlasenko
2018-07-24hush: add "heredoc.tests" from ash, tweak ash "is a function" messageDenys Vlasenko
2018-07-24hush: fix nested redirects colliding with script fdsDenys Vlasenko
2018-07-24hush: handle backslash-newline in heredoc terminatorsDenys Vlasenko
2018-07-24hush: fix handling of heredocs not enclosed in groups where they are "declared"Denys Vlasenko
2018-07-23hush: fix heredoc handling in the "cmd <<EOF ;<newline>" caseDenys Vlasenko
2018-07-23hush: fix handling of heredocs starting with empty linesDenys Vlasenko
2018-07-20hush: never glob result of dquoted "${v:+/bin/c*}"Denys Vlasenko
2018-07-20hush: tidy up code after previous commitsDenys Vlasenko
2018-07-20hush: better names for o_free_unsafe() / o_free(), no logic changesDenys Vlasenko
2018-07-20hush: fix handling of '' in ${var:+ARG}Denys Vlasenko
2018-07-20hush: fix word splitting in ${v:+ARG} - dollar_altvalue1 testDenys Vlasenko
2018-07-20hush: expand_vars_to_list() should not assume it starts new wordDenys Vlasenko
2018-07-20hush: remove pointless "next" var, simplify expand_vars_to_list()Denys Vlasenko
2018-07-20hush: store "ended_in_ifs" flag in o_stringDenys Vlasenko
2018-07-20hush: propagate (output,n) parameters into expand_one_var()Denys Vlasenko
2018-07-20hush: make expand_vars_to_list() a bit more saneDenys Vlasenko
2018-07-18hush: reduce indentation, no code changesDenys Vlasenko
2018-07-18hush: fix 'x=; echo ${x:-"$@"}' producing 'BUG in varexp2' messageDenys Vlasenko
2018-07-18hush: smaller code to set o_string to ""Denys Vlasenko
2018-07-17whitespace fixesDenys Vlasenko
2018-07-17hush: faster/smaller code to check for presense of multiple chars in stringDenys Vlasenko
2018-07-17hush: improve ${var#...}, ${var:+...} and ${var/.../...} - handle quotingDenys Vlasenko
2018-07-15hush: shrink code in builtin_evalDenys Vlasenko
2018-06-26hush: unset_local_var_len is only used by unset_local_varDenys Vlasenko
2018-06-26hush: fix compile problem found by randomconfigDenys Vlasenko
2018-06-26hush: fix dup_CLOEXEC() call without "avoid_fd" parameterDenys Vlasenko