diff options
author | Erik Andersen <andersen@codepoet.org> | 2000-05-13 06:33:19 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 2000-05-13 06:33:19 +0000 |
commit | bcd6177853a39d47b7c0ea75cc27653d63649afa (patch) | |
tree | 45ed7567a55a548fff8cf6e50dcda63420a8bd0f /busybox.def.h | |
parent | 73c8c9cf9a61286a109a8785b8e4782828d6fe99 (diff) | |
download | busybox-w32-bcd6177853a39d47b7c0ea75cc27653d63649afa.tar.gz busybox-w32-bcd6177853a39d47b7c0ea75cc27653d63649afa.tar.bz2 busybox-w32-bcd6177853a39d47b7c0ea75cc27653d63649afa.zip |
BusyBox shell (lash) can now be used as a standalone shell when
BB_FEATURE_STANDALONE_SHELL is defined (i.e. BusyBox can now completely replace
sash). Also fixed it so shell builtins now respect pipes and redirects.
-Erik
Diffstat (limited to 'busybox.def.h')
-rw-r--r-- | busybox.def.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/busybox.def.h b/busybox.def.h index 5652b4518..296c7f94a 100644 --- a/busybox.def.h +++ b/busybox.def.h | |||
@@ -201,6 +201,11 @@ | |||
201 | // Enable command line editing in the shell | 201 | // Enable command line editing in the shell |
202 | //#define BB_FEATURE_SH_COMMAND_EDITING | 202 | //#define BB_FEATURE_SH_COMMAND_EDITING |
203 | // | 203 | // |
204 | //Allow the shell to invoke all the compiled in BusyBox commands as if they | ||
205 | //were shell builtins. Nice for staticly linking an emergency rescue shell | ||
206 | //amoung other thing. | ||
207 | #ifdef BB_FEATURE_STANDALONE_SHELL | ||
208 | // | ||
204 | // Enable tab completion in the shell (not yet | 209 | // Enable tab completion in the shell (not yet |
205 | // working very well -- so don't turn this on) | 210 | // working very well -- so don't turn this on) |
206 | //#define BB_FEATURE_SH_TAB_COMPLETION | 211 | //#define BB_FEATURE_SH_TAB_COMPLETION |