aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
AgeCommit message (Expand)Author
2009-03-31hush: fix wait builtinDenis Vlasenko
2009-03-31hush: don't lie in commentDenis Vlasenko
2009-03-31hush: fix comments, no code changesDenis Vlasenko
2009-03-31hush: make ^C work again, ^Z probably isn't workingDenis Vlasenko
2009-03-31hush: do not reset sighaldlers after fork - instead, prevent them from doing ...Denis Vlasenko
2009-03-31hush: rework signal and trap handling. Some smaller bits are TODO,Denis Vlasenko
2009-03-30implement `unset` semantics as required by POSIXMike Frysinger
2009-03-30update `trap` poisx linkMike Frysinger
2009-03-30do not automatically display job information when the shell is not interactiveMike Frysinger
2009-03-29first pass at `trap` support in hushMike Frysinger
2009-03-29use bb_strtou() in umask/wait and check errno to see if there was a problem r...Mike Frysinger
2009-03-29make sure we check job status whenever updating the promptMike Frysinger
2009-03-28do not let handle_dollar() accept vars that start with a digitMike Frysinger
2009-03-28implement `wait` builtinMike Frysinger
2009-03-28randomconfig fixDenis Vlasenko
2009-03-28update the normally disabled debug code around the syntax() func to use new m...Mike Frysinger
2009-03-28implement most POSIX parameter expansions (~+500bytes)Mike Frysinger
2009-03-28split up feature todo by posix/bashMike Frysinger
2009-03-28unify `set` handling with command line processing, fixup `set` argv processin...Mike Frysinger
2009-03-28handle the "-s" command line option that POSIX requiresMike Frysinger
2009-03-28rename "-f" (fake) option to "-n" to match POSIXMike Frysinger
2009-03-28tweak format modifier in debug code to fixup gcc warningMike Frysinger
2009-03-28convert some of the ENABLE_FEATURE_EDITING from CPP if to C ifMike Frysinger
2009-03-28stop lying about [[ test supportMike Frysinger
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