aboutsummaryrefslogtreecommitdiff
path: root/shell (follow)
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'busybox' into mergeRon Yorston2018-05-1332-294/+1066
|\
| * ash: expand: Fix buffer overflow in expandmetaDenys Vlasenko2018-04-141-25/+42
| * shell: add 6856 $IFS tests to testsuitesDenys Vlasenko2018-04-114-0/+516
| * hush: fix recent breakage from parse_stream() changesDenys Vlasenko2018-04-115-22/+32
| * hush: fix IFS handling in readDenys Vlasenko2018-04-113-1/+54
| * hush: IFS fixesDenys Vlasenko2018-04-115-2/+54
| * hush: fix "$v" expansion in case patterns when v='[a]'Denys Vlasenko2018-04-115-16/+52
| * ash: parser: Allow newlines within parameter substitutionDenys Vlasenko2018-04-115-1/+26
| * hush: optimize parse_stream()Denys Vlasenko2018-04-111-28/+31
| * hush: do not drop backslash from eval 'echo ok\'Denys Vlasenko2018-04-116-8/+22
| * shell: add comments about [[, no code changesDenys Vlasenko2018-04-102-1/+26
| * hush: fix handling of \<eof> in double-quoted stringsDenys Vlasenko2018-04-103-5/+12
| * hush: fix eval 'echo ok\'Denys Vlasenko2018-04-103-5/+11
| * hush: simplify \<newline> code, part 3Denys Vlasenko2018-04-101-55/+45
| * hush: simplify \<newline> code, part 2Denys Vlasenko2018-04-101-30/+30
| * hush: simplify \<newline> code, part 1Denys Vlasenko2018-04-101-11/+11
| * hush: put "current word" structure into parsing contextDenys Vlasenko2018-04-101-122/+120
| * ash: if "[[" bashism is not supported, do not handle it anywhereDenys Vlasenko2018-04-101-0/+2
| * ash: trivial code shrinkDenys Vlasenko2018-04-101-1/+2
| * hush: fix var_leaks.tests and var_preserved.tests on NOMMUDenys Vlasenko2018-04-091-49/+59
| * hush: fix func_return2.tests on NOMMUDenys Vlasenko2018-04-091-0/+7
* | ash: make loopnest a global variableRon Yorston2018-04-131-1/+2
* | ash: make commandname a global variableRon Yorston2018-04-121-2/+7
* | ash: make struct forkshell a local variable in evalbackcmdRon Yorston2018-04-101-7/+7
* | ash: make 'read -s' workRon Yorston2018-04-101-1/+2
* | Merge branch 'busybox' into mergeRon Yorston2018-04-0956-516/+840
|\|
| * bzip2: fix two crashes on corrupted archivesDenys Vlasenko2018-04-081-1/+0
| * libbb.h: always include sys/resource.hDenys Vlasenko2018-04-081-1/+0
| * hush: fix prompt in multi-line $(())Denys Vlasenko2018-04-071-12/+22
| * hush: fix "unset PS1/PS2", and put them into initial variable setDenys Vlasenko2018-04-061-29/+35
| * hush: if we did match "LINENO" or "OPTIND", stop further comparisonsDenys Vlasenko2018-04-061-2/+6
| * hush: consolidate handling of setting/unsetting of PSn, LINENO, OPTINDDenys Vlasenko2018-04-061-29/+30
| * hush: update to correctly handle changed var_bash[346].testsDenys Vlasenko2018-04-051-6/+6
| * hush: implement "hush -s"Denys Vlasenko2018-04-052-9/+9
| * hush: fix a few more corner cases with empty-expanding `cmds`Denys Vlasenko2018-04-055-8/+46
| * hush: fix corner cases with exec in empty expansionsDenys Vlasenko2018-04-055-17/+35
| * hush: less mind-bending set_vars_and_save_old()Denys Vlasenko2018-04-051-71/+101
| * hush: "no logic changes" in last commit was not true, fix it upDenys Vlasenko2018-04-051-1/+2
| * hush: make run_pipe code simpler to understand, no logic changesDenys Vlasenko2018-04-051-66/+57
| * hush: fix a bug where we don't properly handle f() { a=A; b=B; }; a= fDenys Vlasenko2018-04-055-82/+93
| * hush: make var nesting code independent of "local" supportDenys Vlasenko2018-04-041-40/+61
| * hush: fix for readonly vars in "ro=A ro=B cmd" caseDenys Vlasenko2018-04-043-13/+21
| * ash: unbreak PS1 parsing after "ash: parser: Add syntax stack..." commitDenys Vlasenko2018-04-041-1/+3
| * hush: support "f() (cmd)" functionsDenys Vlasenko2018-04-036-40/+59
| * hush: fix mishandling of "true | f() { echo QWE; }"Denys Vlasenko2018-04-031-0/+9
| * hush: fix "set -e; false || x=1; echo OK"Denys Vlasenko2018-04-035-7/+43
| * hush: one-word, no-globbing handling of local/export/readonly argsDenys Vlasenko2018-04-031-21/+32
| * ash: parser: Fix parameter expansion inside inner double quotesDenys Vlasenko2018-04-023-2/+8
| * hush: fix a backslash-removal bug in caseDenys Vlasenko2018-04-025-3/+37
| * ash: expand: Fix bugs with words connected to the right of $@Denys Vlasenko2018-04-025-4/+13