aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
AgeCommit message (Expand)Author
2009-03-26enable most job functions on no-mmu systemsMike Frysinger
2009-03-23do not make startup banner depend on job supportMike Frysinger
2009-03-22move parse_stream out of ENABLE_HUSH_TICK to avoid implicit decl/build errorMike Frysinger
2009-03-22hush: rearrange functions to reduce amount of forward references.Denis Vlasenko
2009-03-22hush: fix segv at repeated "set -- a b c" + "shift"Denis Vlasenko
2009-03-21hush: fix strcpy of potentially overlapping stringsDenis Vlasenko
2009-03-20hush: fix bug 207 and "hush -c" parameter passing.Denis Vlasenko
2009-03-20hush: fix set [--] params. Closes bug 199.Denis Vlasenko
2008-12-30libbb: add bb_unsetenv (taken from hush).Denis Vlasenko
2008-11-25ash,hush: add TODO for rare build failureDenis Vlasenko
2008-10-29whitespace fixes, no code changesDenis Vlasenko
2008-10-14hush: add TODODenis Vlasenko
2008-10-14hush: next small step towards functionsDenis Vlasenko
2008-10-13hush: fix NOMMU bug (analogous to preceding commit for MMU)Denis Vlasenko
2008-10-13hush: fix trashing of environment by local env vars:Denis Vlasenko
2008-10-09hush: fix environment and memory leaks, add tests for themDenis Vlasenko
2008-10-09hush: preparatory work for implementing functionsDenis Vlasenko
2008-10-09hush: massive renaming of ill-named structures and fieldsDenis Vlasenko
2008-09-25- fix compilation on OSF/1Bernhard Reutner-Fischer
2008-08-04hush: fix mishandling of a'b'c=fff as assignments. They are not.Denis Vlasenko
2008-08-03hush: remove a comment about already fixed bugDenis Vlasenko
2008-07-31hush: support $_NUMBERS variable namesDenis Vlasenko
2008-07-31hush: fix "case ... in <newline> word)..."Denis Vlasenko
2008-07-31hush: support "pattern1|pattern2...)" in case statementsDenis Vlasenko
2008-07-29hush: trivial code shrinkDenis Vlasenko
2008-07-29hush: use G.xxx instead of #define xxx G.xxx. We have too many globalsDenis Vlasenko
2008-07-29randomconfig fixDenis Vlasenko
2008-07-29hush: small fix for repeated continue and fix for wrong loop depth countDenis Vlasenko
2008-07-29hush: fix inverted check (was making all break's to act as "break 99999")Denis Vlasenko
2008-07-29hush: fix break'ing out of {} and () groups; with testcaseDenis Vlasenko
2008-07-29randomconfig fixesDenis Vlasenko
2008-07-29hush: add #defines to switch off break/continue if loops are not supportedDenis Vlasenko
2008-07-28hush: fix "while false; ..." exitcode; add testsuitesDenis Vlasenko
2008-07-28hush: support "break N" and "continue N"Denis Vlasenko
2008-07-28hush: implement break and continueDenis Vlasenko
2008-07-28hush: in run_list(), some loop_top ops seems to be superfluous.Denis Vlasenko
2008-07-28hush: in run_list(), last_cond_code seems to be superfluous. comment it outDenis Vlasenko
2008-07-28hush: explain run_list() in detail; small optimizationsDenis Vlasenko
2008-07-28hush: finish and enable optional case...esac support. Code size cost:Denis Vlasenko
2008-07-21libbb: [x]fopen_for_{read,write} introduced and used.Denis Vlasenko
2008-07-21- fix spellingBernhard Reutner-Fischer
2008-07-14hush: fix "... pattern) cmd;; esac" caseDenis Vlasenko
2008-07-14hush: delete unused field in struct child.Denis Vlasenko
2008-07-14hush: add case statement support. It is incomplete and disabled for now.Denis Vlasenko
2008-07-09hush: compile fixes for !LOOPS caseDenis Vlasenko
2008-07-06hush: support "for if in do done then; do echo $if; done" caseDenis Vlasenko
2008-07-05hush: support "for v; do ... done" syntax (implied 'in "$@"')Denis Vlasenko
2008-07-05hush: fix a case where "$@" must expand to no word at allDenis Vlasenko
2008-07-05*: rename ATTRIBUTE_XXX to just XXX.Denis Vlasenko
2008-07-01revert last two commits. vfork cannot be used in subroutine,Denis Vlasenko