1. 6c947d2 Fix the code for establishing a controlling terminal. -Erik by Eric Andersen · 23 years ago
  2. 2d848a4 This should finish off the job control issues with lash. Make certain by Eric Andersen · 23 years ago
  3. 52a97ca Some more cleanups. Of special importance, never free a pipe by Eric Andersen · 23 years ago
  4. c798b07 Some cleanups for hush. Saves about 350bytes. -Erik by Eric Andersen · 23 years ago
  5. 8a646dd This commit guts lash, restoring it to what it was originally intended to do, by Eric Andersen · 23 years ago
  6. 04407e5 Another hush update from Larry: by Eric Andersen · 23 years ago
  7. 817e73c A patch from Larry to fix pathological things like '>""' by Eric Andersen · 23 years ago
  8. c616e53 Don't close file descriptors when we are duplicating them. by Matt Kraai · 23 years ago
  9. 4f6753e Cope gracefully when people type something, then hit ^C. -Erik by Eric Andersen · 23 years ago
  10. 4f99053 Patch from Vladimir to fix up autocompletion on a files/dirs with spaces in by Eric Andersen · 23 years ago
  11. a813afc Plug another memory leak by Eric Andersen · 23 years ago
  12. a15dc15 Plug another memory leak in hush. This one showed up when backticked by Eric Andersen · 23 years ago
  13. bf7df04 Fix a massive memory leak in the run_list_test() function. by Eric Andersen · 23 years ago
  14. 77d9268 Patch from larry to fix some grammar errors. by Eric Andersen · 23 years ago
  15. bdd4ece Commit a patch by Larry Doolittle which fixes recursive calls to file_peek, by Matt Kraai · 23 years ago
  16. 57e6a49 Excellent. This patch from Larry fixes the behavior of hush by Eric Andersen · 23 years ago
  17. 9978576 Fix this case. No, really this time. by Eric Andersen · 23 years ago
  18. aeb44c4 Fix a race. Sometimes by the time we got to checkjobs(), the by Eric Andersen · 23 years ago
  19. 8168678 Oops. Remove some debug noise I left in. by Eric Andersen · 23 years ago
  20. 94ac244 Updates from both Vladimir and Larry by Eric Andersen · 23 years ago
  21. 004015e Patch from Lars Kellogg-Stedman <lars@larsshack.org> to fix bug by Eric Andersen · 23 years ago
  22. ada18ff The latest patch from Larry by Eric Andersen · 23 years ago
  23. 9ffb7dd This is a patch from Vladimir: by Eric Andersen · 23 years ago
  24. bfae252 It turns out job control in both hush and lash was broken by the by Eric Andersen · 23 years ago
  25. 59df6f7 Change 'printf("%s\n", ...)' into 'puts(...)'. Noted and patched in hostname.c by Matt Kraai · 23 years ago
  26. bc604a2 Move init of a bunch of globals into main so we are at least by Eric Andersen · 23 years ago
  27. f72f562 Fix the behavior of local shell variables to match that of bash and ash. -Erik by Eric Andersen · 23 years ago
  28. 15649c1 Oops. I left in some debug noise. by Eric Andersen · 23 years ago
  29. 20a69a7 Write set_local_var() and fixup lookup_param() so you can now use by Eric Andersen · 23 years ago
  30. 78a7c99 This patch covers one big part of variable handling. by Eric Andersen · 23 years ago
  31. cfa88ec Fix up some silly warnings by Eric Andersen · 23 years ago
  32. 5f265b7 Fix a segfault in lash, hush, and cmdedit. Each of these used by Eric Andersen · 23 years ago
  33. 9d94dea Use xgetcwd by Eric Andersen · 23 years ago
  34. 1a6d39b A few more structural updates for job control. -Erik by Eric Andersen · 23 years ago
  35. 0a36de0 Fix a stupid segfault caused by dereferencing a NULL ptr. -Erik by Eric Andersen · 23 years ago
  36. 45e92ba This patch from Evin Robertson <nitfol@my-deja.com> fixes export so it works. by Eric Andersen · 23 years ago
  37. 83a2ae2 More hush updates from Larry: by Eric Andersen · 23 years ago
  38. 2dcfba7 Larry's variant on Evin Robertson's fix to what I messed up by Eric Andersen · 23 years ago
  39. d24f878 Don't reset parents context when we encounter an terminator. Fixes by Matt Kraai · 23 years ago
  40. e5ffb91 If it fails to run a builtin, let it fall through to exec the real thing. -Erik by Eric Andersen · 23 years ago
  41. 80abc45 Move up waitpid error check so that errno isn't clobbered by tcsetpgrp. by Matt Kraai · 23 years ago
  42. 0fcd447 Some more job control updates. It will now sucessfully background by Eric Andersen · 23 years ago
  43. 20a3069 Don't treat newline as pipe separator when processing substitutions. by Matt Kraai · 23 years ago
  44. 9f8caf1 Fix $(...) construction. Noted and patched by Larry Doolittle by Matt Kraai · 23 years ago
  45. bafd94f First pass at getting job control working. This gets the infrastructure by Eric Andersen · 23 years ago
  46. 1c8a59a Use the current pgrp, not pid, when resetting the foreground process group. by Matt Kraai · 23 years ago
  47. f162e7d Don't segfault if the first word is the empty string. by Matt Kraai · 23 years ago
  48. e67c3ce Another update from Larry: by Eric Andersen · 23 years ago
  49. 4ed5e37 Another hush update from Larry: by Eric Andersen · 23 years ago
  50. aac75e5 Some more hush.c updates from Larry Doolittle. by Eric Andersen · 23 years ago
  51. 088875f Use BUFSIZ for the_command to match size used in cmdedit by Eric Andersen · 23 years ago
  52. af44a0e An update to hush from Larry: by Eric Andersen · 23 years ago
  53. 25f2703 This is the initial checkin of Larry Doolittle's hush.c, using his by Eric Andersen · 23 years ago
  54. 4b541a8 Moved some #ifdefs down below #include "busybox.h" where they belong. by Mark Whitley · 23 years ago
  55. ed424db Some patches from Gennady Feldman. Fixed a glob problem such that by Eric Andersen · 23 years ago
  56. 4ef40c0 Another banner consolidation from Larry Doolittle <ldoolitt@recycle.lbl.gov>. by Matt Kraai · 23 years ago
  57. be66ad3 Fix handling of '' and "". by Matt Kraai · 23 years ago
  58. e5dfced Apply Vladimir's latest cleanup patch. -Erik by Eric Andersen · 23 years ago
  59. c270ec1 Add support of /W prompts -Erik by Eric Andersen · 23 years ago
  60. 2129f97 Avoid segfault when export is invoked with no arguments. Thanks to by Matt Kraai · 23 years ago
  61. 84e229c Add in a new standalone env applet for fixing up app's environments -Erik by Eric Andersen · 23 years ago
  62. a82a003 Fix to last patch: locale code should be 9, not 7. by Mark Whitley · 23 years ago
  63. 1c6581a Applied patch from Vladimir N. Oleynik to add locale support to the shell per by Mark Whitley · 23 years ago
  64. 82ab8da -Wshadow sh fix from Jeff Garzik by Eric Andersen · 23 years ago
  65. 1ca20a7 A nice patch from Larry Doolittle that adds -Wshadow and by Eric Andersen · 23 years ago
  66. 92d2324 Another cleanup patch from Jeff Garzik <jgarzik@mandrakesoft.com> by Eric Andersen · 23 years ago
  67. 61173a5 Fix to cmdedit.c from Vladimir by Eric Andersen · 23 years ago
  68. 3417447 Patch from Larry and Vladimir to clean up sh.c and fix by Eric Andersen · 23 years ago
  69. 4aaefc2 Fix from Larry for glob problems. -Erik by Eric Andersen · 23 years ago
  70. f9ff8a7 cmdedit.c bugfix patch from Vladimir. -Erik by Eric Andersen · 23 years ago
  71. 730cdb1 Reversed previous patch. The right way is to fix uClibc. by Mark Whitley · 23 years ago
  72. 0b57e28 Applied patch from Andreas Neuhaus to fix namespace conflict that made busybox by Mark Whitley · 23 years ago
  73. 1ef9268 Yesterday I make strsep_space include post-token whitespace, by Eric Andersen · 23 years ago
  74. ce4a586 I forgot to malloc space for the NULL. -Erik by Eric Andersen · 23 years ago
  75. 44a9914 Applied patch from Larry Doolittle to fix '>\na\n' bug. Should close bug #1132 by Mark Whitley · 23 years ago
  76. 4e7244e libc5 glob is pretty stupid and doesn't do GLOB_BRACE or GLOB_TILDE -Erik by Eric Andersen · 23 years ago
  77. f594986 - Changed name of BB_FEATURE_SIMPLE_PROMPT to BB_FEATURE_SH_SIMPLE_PROMPT by Mark Whitley · 23 years ago
  78. b3d6e2d Update the lash shell (hopefully the last time...) so things like by Eric Andersen · 23 years ago
  79. 4987bbf A fix from Larry Doolittle for some nasty segfaults when sh.c tried to free a by Eric Andersen · 23 years ago
  80. 1365bb7 When using wordexp, only try to use the expand command by Eric Andersen · 24 years ago
  81. 74e056b Fixed a couple more cases. $FOO/bar ${FOO} and such now work by Eric Andersen · 24 years ago
  82. 3c7361f Allow wordexp to be used if available by Eric Andersen · 24 years ago
  83. ce89871 Urg. Remove the debug noise by Eric Andersen · 24 years ago
  84. 195743f Ok, sh.c should be working now. Many thanks to Larry Doolittle by Eric Andersen · 24 years ago
  85. 01658a3 Fix sh.c for the glab case. I was messing things up for by Eric Andersen · 24 years ago
  86. 3dbf1e8 A '.' is a legal seperator. by Eric Andersen · 24 years ago
  87. b180dd9 Cleanup patch from Larry by Eric Andersen · 24 years ago
  88. 13d1fa1 Add in 'trim' routine. Fix up sh.c so it works when wordexp by Eric Andersen · 24 years ago
  89. 7e5291f Whitespace / formatting / bracket cleanup. by Mark Whitley · 24 years ago
  90. 32f8c17 Remember to delete un-expandable variables, and do a better job of expanding by Eric Andersen · 24 years ago
  91. ca60459 Rework environment variable handling to use wordexp, per a suggestion from by Eric Andersen · 24 years ago
  92. 11ae573 remove an unused variable by Eric Andersen · 24 years ago
  93. 702ec59 Fix the memory leak. No really this time. -Erik by Eric Andersen · 24 years ago
  94. 36278b9 Fix func prototype by Eric Andersen · 24 years ago
  95. 54851d3 Fixed a memory leak in lash. It seems that close_all was calling close() by Eric Andersen · 24 years ago
  96. 07f2f39 Close open files before calling builtin_exec(). I've tested this by Eric Andersen · 24 years ago
  97. 5165fbe Oops. Since dirent.h depends on BB_FEATURE_SH_TAB_COMPLETION, put it by Eric Andersen · 24 years ago
  98. caeeb36 This fixes lash so it handles environment variable expansion, regardless by Eric Andersen · 24 years ago
  99. cbe31da It turns out that DODMALLOC was broken when I reorganized busybox.h by Eric Andersen · 24 years ago
  100. 94456f5 Put back Vladimir's testing defines, which I mistakenly removed. by Eric Andersen · 24 years ago