aboutsummaryrefslogtreecommitdiff
path: root/findutils
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2017-02-08 20:09:29 +0000
committerRon Yorston <rmy@pobox.com>2017-02-08 20:09:29 +0000
commit373275a708bafb88fa4f0519de2166154f44fed9 (patch)
tree4587b4fd3f695e0f3705b2a217e199f3144df931 /findutils
parentb74b2619779b1deb903b7766261807df1e9b1f7f (diff)
parentc2b18583a3df06aeecf535c3cea6856aa1f2e205 (diff)
downloadbusybox-w32-373275a708bafb88fa4f0519de2166154f44fed9.tar.gz
busybox-w32-373275a708bafb88fa4f0519de2166154f44fed9.tar.bz2
busybox-w32-373275a708bafb88fa4f0519de2166154f44fed9.zip
Merge branch 'busybox' into merge
Diffstat (limited to 'findutils')
-rw-r--r--findutils/find.c14
-rw-r--r--findutils/grep.c1
2 files changed, 1 insertions, 14 deletions
diff --git a/findutils/find.c b/findutils/find.c
index 27698e537..67aa40b21 100644
--- a/findutils/find.c
+++ b/findutils/find.c
@@ -89,8 +89,6 @@
89//config: bool "Enable -perm: permissions matching" 89//config: bool "Enable -perm: permissions matching"
90//config: default y 90//config: default y
91//config: depends on FIND 91//config: depends on FIND
92//config: help
93//config: Enable searching based on file permissions.
94//config: 92//config:
95//config:config FEATURE_FIND_TYPE 93//config:config FEATURE_FIND_TYPE
96//config: bool "Enable -type: file type matching (file/dir/link/...)" 94//config: bool "Enable -type: file type matching (file/dir/link/...)"
@@ -104,15 +102,11 @@
104//config: bool "Enable -xdev: 'stay in filesystem'" 102//config: bool "Enable -xdev: 'stay in filesystem'"
105//config: default y 103//config: default y
106//config: depends on FIND 104//config: depends on FIND
107//config: help
108//config: This option allows find to restrict searches to a single filesystem.
109//config: 105//config:
110//config:config FEATURE_FIND_MAXDEPTH 106//config:config FEATURE_FIND_MAXDEPTH
111//config: bool "Enable -mindepth N and -maxdepth N" 107//config: bool "Enable -mindepth N and -maxdepth N"
112//config: default y 108//config: default y
113//config: depends on FIND 109//config: depends on FIND
114//config: help
115//config: This option enables -mindepth N and -maxdepth N option.
116//config: 110//config:
117//config:config FEATURE_FIND_NEWER 111//config:config FEATURE_FIND_NEWER
118//config: bool "Enable -newer: compare file modification times" 112//config: bool "Enable -newer: compare file modification times"
@@ -126,8 +120,6 @@
126//config: bool "Enable -inum: inode number matching" 120//config: bool "Enable -inum: inode number matching"
127//config: default y 121//config: default y
128//config: depends on FIND 122//config: depends on FIND
129//config: help
130//config: Support the 'find -inum' option for searching by inode number.
131//config: 123//config:
132//config:config FEATURE_FIND_EXEC 124//config:config FEATURE_FIND_EXEC
133//config: bool "Enable -exec: execute commands" 125//config: bool "Enable -exec: execute commands"
@@ -151,15 +143,11 @@
151//config: bool "Enable -user: username/uid matching" 143//config: bool "Enable -user: username/uid matching"
152//config: default y 144//config: default y
153//config: depends on FIND 145//config: depends on FIND
154//config: help
155//config: Support the 'find -user' option for searching by username or uid.
156//config: 146//config:
157//config:config FEATURE_FIND_GROUP 147//config:config FEATURE_FIND_GROUP
158//config: bool "Enable -group: group/gid matching" 148//config: bool "Enable -group: group/gid matching"
159//config: default y 149//config: default y
160//config: depends on FIND 150//config: depends on FIND
161//config: help
162//config: Support the 'find -group' option for searching by group name or gid.
163//config: 151//config:
164//config:config FEATURE_FIND_NOT 152//config:config FEATURE_FIND_NOT
165//config: bool "Enable the 'not' (!) operator" 153//config: bool "Enable the 'not' (!) operator"
@@ -188,8 +176,6 @@
188//config: bool "Enable -size: file size matching" 176//config: bool "Enable -size: file size matching"
189//config: default y 177//config: default y
190//config: depends on FIND 178//config: depends on FIND
191//config: help
192//config: Support the 'find -size' option for searching by file size.
193//config: 179//config:
194//config:config FEATURE_FIND_PRUNE 180//config:config FEATURE_FIND_PRUNE
195//config: bool "Enable -prune: exclude subdirectories" 181//config: bool "Enable -prune: exclude subdirectories"
diff --git a/findutils/grep.c b/findutils/grep.c
index 9f84d529b..8b6e29874 100644
--- a/findutils/grep.c
+++ b/findutils/grep.c
@@ -46,6 +46,7 @@
46//config: Print the specified number of context lines (-C). 46//config: Print the specified number of context lines (-C).
47 47
48//applet:IF_GREP(APPLET(grep, BB_DIR_BIN, BB_SUID_DROP)) 48//applet:IF_GREP(APPLET(grep, BB_DIR_BIN, BB_SUID_DROP))
49// APPLET_ODDNAME:name main location suid_type help
49//applet:IF_EGREP(APPLET_ODDNAME(egrep, grep, BB_DIR_BIN, BB_SUID_DROP, egrep)) 50//applet:IF_EGREP(APPLET_ODDNAME(egrep, grep, BB_DIR_BIN, BB_SUID_DROP, egrep))
50//applet:IF_FGREP(APPLET_ODDNAME(fgrep, grep, BB_DIR_BIN, BB_SUID_DROP, fgrep)) 51//applet:IF_FGREP(APPLET_ODDNAME(fgrep, grep, BB_DIR_BIN, BB_SUID_DROP, fgrep))
51 52