aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-09-24 05:49:36 +0000
committerMike Frysinger <vapier@gentoo.org>2005-09-24 05:49:36 +0000
commit9ac178ab408354bcf61ee19a071fdc1e4f163737 (patch)
tree4e7482abb66b8f3f6242490f40cde7f3c2fdf1eb /shell
parentce0cf1d44bc04e39eccb7ff80c2ffe11211b942f (diff)
downloadbusybox-9ac178ab408354bcf61ee19a071fdc1e4f163737.tar.gz
rename menu and touchup whitespace
Diffstat (limited to 'shell')
-rw-r--r--shell/Config.in18
1 files changed, 9 insertions, 9 deletions
diff --git a/shell/Config.in b/shell/Config.in
index eb4616672..a3620c0e2 100644
--- a/shell/Config.in
+++ b/shell/Config.in
@@ -3,7 +3,7 @@
# see scripts/kbuild/config-language.txt.
#
-menu "Another Bourne-like Shell"
+menu "Shells"
choice
prompt "Choose your default shell"
@@ -54,18 +54,18 @@ config CONFIG_ASH_JOB_CONTROL
Enable job control in the ash shell.
config CONFIG_ASH_READ_NCHARS
- bool " Enable 'read -n N' and 'read -s' support"
- default n
- depends on CONFIG_ASH
- help
+ bool " Enable 'read -n N' and 'read -s' support"
+ default n
+ depends on CONFIG_ASH
+ help
'read -n N' will return a value after N characters have been read.
'read -s' will read without echoing the user's input.
config CONFIG_ASH_READ_TIMEOUT
- bool " Enable 'read -t S' support."
- default n
- depends on CONFIG_ASH
- help
+ bool " Enable 'read -t S' support."
+ default n
+ depends on CONFIG_ASH
+ help
'read -t S' will return a value after S seconds have passed.
This implementation will allow fractional seconds, expressed
as a decimal fraction, e.g. 'read -t 2.5 foo'.