aboutsummaryrefslogtreecommitdiff
path: root/findutils
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-07-14 19:18:43 +0000
committerEric Andersen <andersen@codepoet.org>2003-07-14 19:18:43 +0000
commitfb0c6af286013929a89a2ba37f1d74cc05cdd5e7 (patch)
tree5ccaf4945a1bc5cba82209e9dfa8d59f56382134 /findutils
parent9edcabdc340e858227017b023a724c7e7e9f67d8 (diff)
downloadbusybox-w32-fb0c6af286013929a89a2ba37f1d74cc05cdd5e7.tar.gz
busybox-w32-fb0c6af286013929a89a2ba37f1d74cc05cdd5e7.tar.bz2
busybox-w32-fb0c6af286013929a89a2ba37f1d74cc05cdd5e7.zip
Patch from Lars Kellogg-Stedman:
The attached two patches add config documentation to init/Config.in and fileutils/Config.in.
Diffstat (limited to 'findutils')
-rw-r--r--findutils/Config.in18
1 files changed, 12 insertions, 6 deletions
diff --git a/findutils/Config.in b/findutils/Config.in
index cac11f77b..e904587e4 100644
--- a/findutils/Config.in
+++ b/findutils/Config.in
@@ -16,28 +16,31 @@ config CONFIG_FEATURE_FIND_MTIME
16 default y 16 default y
17 depends on CONFIG_FIND 17 depends on CONFIG_FIND
18 help 18 help
19 Please submit a patch to add help text for this item. 19 Allow searching based on the modification time of
20 files.
20 21
21config CONFIG_FEATURE_FIND_PERM 22config CONFIG_FEATURE_FIND_PERM
22 bool " Enable permissions matching (-perm) option" 23 bool " Enable permissions matching (-perm) option"
23 default y 24 default y
24 depends on CONFIG_FIND 25 depends on CONFIG_FIND
25 help 26 help
26 Please submit a patch to add help text for this item. 27 Enable searching based on file permissions.
27 28
28config CONFIG_FEATURE_FIND_TYPE 29config CONFIG_FEATURE_FIND_TYPE
29 bool " Enable filetype matching (-type) option" 30 bool " Enable filetype matching (-type) option"
30 default y 31 default y
31 depends on CONFIG_FIND 32 depends on CONFIG_FIND
32 help 33 help
33 Please submit a patch to add help text for this item. 34 Enable searching based on file type (file,
35 directory, socket, device, etc.).
34 36
35config CONFIG_FEATURE_FIND_XDEV 37config CONFIG_FEATURE_FIND_XDEV
36 bool " Enable stay in filesystem (-xdev) option" 38 bool " Enable stay in filesystem (-xdev) option"
37 default y 39 default y
38 depends on CONFIG_FIND 40 depends on CONFIG_FIND
39 help 41 help
40 Please submit a patch to add help text for this item. 42 This option will restrict find to a single
43 filesystem.
41 44
42config CONFIG_FEATURE_FIND_NEWER 45config CONFIG_FEATURE_FIND_NEWER
43 bool " Enable -newer option for comparing file mtimes" 46 bool " Enable -newer option for comparing file mtimes"
@@ -65,7 +68,9 @@ config CONFIG_FEATURE_GREP_EGREP_ALIAS
65 default y 68 default y
66 depends on CONFIG_GREP 69 depends on CONFIG_GREP
67 help 70 help
68 Please submit a patch to add help text for this item. 71 Enabled support for extended regular expressions. Extended
72 regular expressions allow for alternation (foo|bar), grouping,
73 and various repetition operators.
69 74
70config CONFIG_FEATURE_GREP_FGREP_ALIAS 75config CONFIG_FEATURE_GREP_FGREP_ALIAS
71 bool " Alias fgrep to grep -f" 76 bool " Alias fgrep to grep -f"
@@ -81,7 +86,8 @@ config CONFIG_FEATURE_GREP_CONTEXT
81 default y 86 default y
82 depends on CONFIG_GREP 87 depends on CONFIG_GREP
83 help 88 help
84 Please submit a patch to add help text for this item. 89 Enable match context in results. This will display a number
90 of lines preceding and/or trailing matches.
85 91
86config CONFIG_XARGS 92config CONFIG_XARGS
87 bool "xargs" 93 bool "xargs"