Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/shell
AgeCommit message (Expand)Author
2023-10-02sleep: fix "sleep -- ARGS"Denys Vlasenko
2023-08-31ash: initialize basepf.buf in ashzhuyan
2023-07-10Update applet size estimatesDenys Vlasenko
2023-07-10ash: tweak comments, no code changesDenys Vlasenko
2023-07-10ash: remove "volatile" specifier from suppress_intDenys Vlasenko
2023-07-10ash: disable sleep as builtin, closes 15619Denys Vlasenko
2023-07-08hush: fix a compile failureDenys Vlasenko
2023-07-04ash: disable check for "good" function name, bash does not check thisDenys Vlasenko
2023-07-03hush: quote values in "readonly" outputDenys Vlasenko
2023-07-02shell/math: avoid $((3**999999999999999999)) to take yearsDenys Vlasenko
2023-07-02shell/math: do not accept $((36#@))Denys Vlasenko
2023-06-30shell/math: code shrinkDenys Vlasenko
2023-06-29shell/math: code shrinkDenys Vlasenko
2023-06-28shell/math: code shrinkDenys Vlasenko
2023-06-26shell/math: improve commentsDenys Vlasenko
2023-06-26shell/math: rename TOK_NUM to TOK_VALUE, improve commentsDenys Vlasenko
2023-06-25shell/math: bash-compatible handling of too large numbersDenys Vlasenko
2023-06-19shell/math: disable debug againDenys Vlasenko
2023-06-19shell/math: $((1?)) has one-too-small opstack, fix thisDenys Vlasenko
2023-06-19shell/math: fix comments about jammed-together num+num corner casesDenys Vlasenko
2023-06-18shell/math: add note on ERANGEDenys Vlasenko
2023-06-18shell/math: explain why we use separate &endDenys Vlasenko
2023-06-18shell/math: code shrinkDenys Vlasenko
2023-06-18shell/math: eliminate redundant endofname()Denys Vlasenko
2023-06-18shell: typo fix in testsDenys Vlasenko
2023-06-18shell/math: code shrinkDenys Vlasenko
2023-06-18shell/math: decrease stack usage by not allocating copies of variable namesDenys Vlasenko
2023-06-18shell/math: decrease stack usageDenys Vlasenko
2023-06-17shell: move varcmp() to shell_common.h and use it in hushDenys Vlasenko
2023-06-17ash: code shrinkDenys Vlasenko
2023-06-17shell/read: do not allow empty variable nameDenys Vlasenko
2023-06-17shell/math: eliminate some redundant stores on return code pathDenys Vlasenko
2023-06-17shell/math: change ?: nesting code to not have 63 level nesting limitationDenys Vlasenko
2023-06-17shell/math.h: update comments, rearrange struct members for smaller codeDenys Vlasenko
2023-06-17shell/math: code shrinkDenys Vlasenko
2023-06-16shell/math: tweka commentsDenys Vlasenko
2023-06-16shell/math: fix ?: to not evaluate not-taken branchesDenys Vlasenko
2023-06-15shell/math: simplify handling of unary plusDenys Vlasenko
2023-06-15shell/math: explain the logic, small tweak to make code smallerDenys Vlasenko
2023-06-15shell/math: fix order of expansion of variables to numbersDenys Vlasenko
2023-06-15shell: document another arithmetic discrepancy with bashDenys Vlasenko
2023-06-15shell/math: remove special code to handle a?b?c:d:e, it works without it nowDenys Vlasenko
2023-06-15shell/math: fix parsing of ?: and explain why it's parsed that wayDenys Vlasenko
2023-06-15shell/math: simpler insertion of "fake" last RPARENDenys Vlasenko
2023-06-14shell: sync ash/hush test scriptsDenys Vlasenko
2023-06-14shell/math: trivial code shrinkDenys Vlasenko
2023-06-14shell/math: fix the order of variable resolution in binopsDenys Vlasenko
2023-06-14shell/math: remove now-unused second_valDenys Vlasenko
2023-06-14shell/math: fix nested ?: and do not parse variables in not-taken branchDenys Vlasenko
2023-06-14shell/math: remove a redundant checkDenys Vlasenko