aboutsummaryrefslogtreecommitdiff
path: root/shell
AgeCommit message (Expand)Author
2007-05-08tail: fix SEGV on "tail -N"Denis Vlasenko
2007-05-06hush: fix double-free in "echo TEST &"Denis Vlasenko
2007-05-05hush: stop generating extra empty pipes in parse stage.Denis Vlasenko
2007-05-05hush: preparatory patch for removing extra empty pipes generationDenis Vlasenko
2007-05-04hush: fix "while true; do true; done" + ctrl-zDenis Vlasenko
2007-05-04applets: fix compile-time warningDenis Vlasenko
2007-05-04hush: add parse tree debug printDenis Vlasenko
2007-05-03hush: fix "true | exit 3; echo $?" bugDenis Vlasenko
2007-05-02hush: remove env builtin (it is buggy). Add commentsDenis Vlasenko
2007-05-02hush: simplify debugging prints a little bitDenis Vlasenko
2007-05-02hush: add debugging for tracing execution,Denis Vlasenko
2007-05-02hush: fix incorrect exitcodes without job controlDenis Vlasenko
2007-04-29ash,kill: use common code for kill applet/builtinDenis Vlasenko
2007-04-28ash: fix infinite loop on exit if tty is not there anymoreDenis Vlasenko
2007-04-28hush: make job control and interactiveness configurable, part 2Denis Vlasenko
2007-04-28hush: make job control and interactiveness configurable, part 1Denis Vlasenko
2007-04-28hush: make hush properly detect EOF on stdin (even interactive one -Denis Vlasenko
2007-04-28hush: add Ctrl-C handling to nofork caseDenis Vlasenko
2007-04-28hush: better signal handling across ctrl-zDenis Vlasenko
2007-04-28hush: fix nofork + ctrl-Z clobbering of globalsDenis Vlasenko
2007-04-28hush: add ctrl-Z handling for nofork'ed caseDenis Vlasenko
2007-04-21hush: make Ctrl-Z work (at least sometimes)Denis Vlasenko
2007-04-21hust: add a commentDenis Vlasenko
2007-04-21hush: fix more backgrounding bugs. Plenty of them remains still.Denis Vlasenko
2007-04-21hush: explain why "pipe; exit $?" doesn't show correct exitcodeDenis Vlasenko
2007-04-21hush: do not print message if killed by signal;Denis Vlasenko
2007-04-21hush: begin fixing non-functional job controlDenis Vlasenko
2007-04-20hush: small code shrink; style fixesDenis Vlasenko
2007-04-19dd: fix skip= parse error (spotted by Dirk Clemens <develop@cle-mens.de>)Denis Vlasenko
2007-04-19doc: add README on shell job controlDenis Vlasenko
2007-04-19ps: add -o tty and -o rss supportDenis Vlasenko
2007-04-18hush: remove stray semicolon (should change nothing)Denis Vlasenko
2007-04-16shells: remove few statics and duplicated codeDenis Vlasenko
2007-04-16style fixes, no code changesDenis Vlasenko
2007-04-14msh: style fixesDenis Vlasenko
2007-04-14lineedit: nuke two unused variables and code which sets themDenis Vlasenko
2007-04-14lash: recognize and use NOFORK appletsDenis Vlasenko
2007-04-14hush: use NOFORK applets as appropriate. Net reduction of code size.Denis Vlasenko
2007-04-13teach find_root_device to deal with /dev/ subdirsDenis Vlasenko
2007-04-13hush: more style fixes.Denis Vlasenko
2007-04-13hush: comment out and replace bug in set_local_var:Denis Vlasenko
2007-04-13shell/: add SUSv3 doc for fast & easy referenceDenis Vlasenko
2007-04-12lash: "forking" applets are actually can be treated the same way as "non-fork...Denis Vlasenko
2007-04-12fix realloc-of-non-malloced pointer, and reduce size while at itDenis Vlasenko
2007-04-12pass a copy of argv[i] to NOFORK applets (they may permute it etc).Denis Vlasenko
2007-04-12style fixes. No code changesDenis Vlasenko
2007-04-11bb_full_fd_action: remove potential xmalloc from NOFORK pathDenis Vlasenko
2007-04-11ash: fix kill -l (by Mats Erik Andersson <mats.andersson64@comhem.se>)Denis Vlasenko
2007-04-11style fixes, no code changes.Denis Vlasenko
2007-04-11rename: run_applet_by_name -> run_applet_and_exitDenis Vlasenko