aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorvapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-09-24 05:49:36 +0000
committervapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-09-24 05:49:36 +0000
commit2e14f6b556a64e9bb1b23d9debb3dbe865d64f1e (patch)
tree4e7482abb66b8f3f6242490f40cde7f3c2fdf1eb /shell
parent374e77d407e6af1ee21c61b0703518c094644382 (diff)
downloadbusybox-w32-2e14f6b556a64e9bb1b23d9debb3dbe865d64f1e.tar.gz
busybox-w32-2e14f6b556a64e9bb1b23d9debb3dbe865d64f1e.tar.bz2
busybox-w32-2e14f6b556a64e9bb1b23d9debb3dbe865d64f1e.zip
rename menu and touchup whitespace
git-svn-id: svn://busybox.net/trunk/busybox@11615 69ca8d6d-28ef-0310-b511-8ec308f3f277
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 @@
3# see scripts/kbuild/config-language.txt. 3# see scripts/kbuild/config-language.txt.
4# 4#
5 5
6menu "Another Bourne-like Shell" 6menu "Shells"
7 7
8choice 8choice
9 prompt "Choose your default shell" 9 prompt "Choose your default shell"
@@ -54,18 +54,18 @@ config CONFIG_ASH_JOB_CONTROL
54 Enable job control in the ash shell. 54 Enable job control in the ash shell.
55 55
56config CONFIG_ASH_READ_NCHARS 56config CONFIG_ASH_READ_NCHARS
57 bool " Enable 'read -n N' and 'read -s' support" 57 bool " Enable 'read -n N' and 'read -s' support"
58 default n 58 default n
59 depends on CONFIG_ASH 59 depends on CONFIG_ASH
60 help 60 help
61 'read -n N' will return a value after N characters have been read. 61 'read -n N' will return a value after N characters have been read.
62 'read -s' will read without echoing the user's input. 62 'read -s' will read without echoing the user's input.
63 63
64config CONFIG_ASH_READ_TIMEOUT 64config CONFIG_ASH_READ_TIMEOUT
65 bool " Enable 'read -t S' support." 65 bool " Enable 'read -t S' support."
66 default n 66 default n
67 depends on CONFIG_ASH 67 depends on CONFIG_ASH
68 help 68 help
69 'read -t S' will return a value after S seconds have passed. 69 'read -t S' will return a value after S seconds have passed.
70 This implementation will allow fractional seconds, expressed 70 This implementation will allow fractional seconds, expressed
71 as a decimal fraction, e.g. 'read -t 2.5 foo'. 71 as a decimal fraction, e.g. 'read -t 2.5 foo'.