aboutsummaryrefslogtreecommitdiff
path: root/findutils/find.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-07-21 09:50:55 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2017-07-21 09:50:55 +0200
commit72089cf6b4a77214ec4fd21d5ee5bf56958781cb (patch)
treea5cd9d8f47e909834d3dbc44f895556e68bcf18f /findutils/find.c
parent75d151e31d135ebab083307ded4e9b98970baa75 (diff)
downloadbusybox-72089cf6b4a77214ec4fd21d5ee5bf56958781cb.tar.gz
config: deindent all help texts
Those two spaces after tab have no effect, and always a nuisance when editing. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'findutils/find.c')
-rw-r--r--findutils/find.c66
1 files changed, 33 insertions, 33 deletions
diff --git a/findutils/find.c b/findutils/find.c
index 70ad03208..69baf065d 100644
--- a/findutils/find.c
+++ b/findutils/find.c
@@ -57,33 +57,33 @@
//config: bool "find (14 kb)"
//config: default y
//config: help
-//config: find is used to search your system to find specified files.
+//config: find is used to search your system to find specified files.
//config:
//config:config FEATURE_FIND_PRINT0
//config: bool "Enable -print0: NUL-terminated output"
//config: default y
//config: depends on FIND
//config: help
-//config: Causes output names to be separated by a NUL character
-//config: rather than a newline. This allows names that contain
-//config: newlines and other whitespace to be more easily
-//config: interpreted by other programs.
+//config: Causes output names to be separated by a NUL character
+//config: rather than a newline. This allows names that contain
+//config: newlines and other whitespace to be more easily
+//config: interpreted by other programs.
//config:
//config:config FEATURE_FIND_MTIME
//config: bool "Enable -mtime: modified time matching"
//config: default y
//config: depends on FIND
//config: help
-//config: Allow searching based on the modification time of
-//config: files, in days.
+//config: Allow searching based on the modification time of
+//config: files, in days.
//config:
//config:config FEATURE_FIND_MMIN
//config: bool "Enable -mmin: modified time matching by minutes"
//config: default y
//config: depends on FIND
//config: help
-//config: Allow searching based on the modification time of
-//config: files, in minutes.
+//config: Allow searching based on the modification time of
+//config: files, in minutes.
//config:
//config:config FEATURE_FIND_PERM
//config: bool "Enable -perm: permissions matching"
@@ -95,8 +95,8 @@
//config: default y
//config: depends on FIND
//config: help
-//config: Enable searching based on file type (file,
-//config: directory, socket, device, etc.).
+//config: Enable searching based on file type (file,
+//config: directory, socket, device, etc.).
//config:
//config:config FEATURE_FIND_XDEV
//config: bool "Enable -xdev: 'stay in filesystem'"
@@ -113,8 +113,8 @@
//config: default y
//config: depends on FIND
//config: help
-//config: Support the 'find -newer' option for finding any files which have
-//config: modification time that is more recent than the specified FILE.
+//config: Support the 'find -newer' option for finding any files which have
+//config: modification time that is more recent than the specified FILE.
//config:
//config:config FEATURE_FIND_INUM
//config: bool "Enable -inum: inode number matching"
@@ -126,18 +126,18 @@
//config: default y
//config: depends on FIND
//config: help
-//config: Support the 'find -exec' option for executing commands based upon
-//config: the files matched.
+//config: Support the 'find -exec' option for executing commands based upon
+//config: the files matched.
//config:
//config:config FEATURE_FIND_EXEC_PLUS
//config: bool "Enable -exec ... {} +"
//config: default y
//config: depends on FEATURE_FIND_EXEC
//config: help
-//config: Support the 'find -exec ... {} +' option for executing commands
-//config: for all matched files at once.
-//config: Without this option, -exec + is a synonym for -exec ;
-//config: (IOW: it works correctly, but without expected speedup)
+//config: Support the 'find -exec ... {} +' option for executing commands
+//config: for all matched files at once.
+//config: Without this option, -exec + is a synonym for -exec ;
+//config: (IOW: it works correctly, but without expected speedup)
//config:
//config:config FEATURE_FIND_USER
//config: bool "Enable -user: username/uid matching"
@@ -154,23 +154,23 @@
//config: default y
//config: depends on FIND
//config: help
-//config: Support the '!' operator to invert the test results.
-//config: If 'Enable full-blown desktop' is enabled, then will also support
-//config: the non-POSIX notation '-not'.
+//config: Support the '!' operator to invert the test results.
+//config: If 'Enable full-blown desktop' is enabled, then will also support
+//config: the non-POSIX notation '-not'.
//config:
//config:config FEATURE_FIND_DEPTH
//config: bool "Enable -depth"
//config: default y
//config: depends on FIND
//config: help
-//config: Process each directory's contents before the directory itself.
+//config: Process each directory's contents before the directory itself.
//config:
//config:config FEATURE_FIND_PAREN
//config: bool "Enable parens in options"
//config: default y
//config: depends on FIND
//config: help
-//config: Enable usage of parens '(' to specify logical order of arguments.
+//config: Enable usage of parens '(' to specify logical order of arguments.
//config:
//config:config FEATURE_FIND_SIZE
//config: bool "Enable -size: file size matching"
@@ -182,45 +182,45 @@
//config: default y
//config: depends on FIND
//config: help
-//config: If the file is a directory, don't descend into it. Useful for
-//config: exclusion .svn and CVS directories.
+//config: If the file is a directory, don't descend into it. Useful for
+//config: exclusion .svn and CVS directories.
//config:
//config:config FEATURE_FIND_DELETE
//config: bool "Enable -delete: delete files/dirs"
//config: default y
//config: depends on FIND && FEATURE_FIND_DEPTH
//config: help
-//config: Support the 'find -delete' option for deleting files and directories.
-//config: WARNING: This option can do much harm if used wrong. Busybox will not
-//config: try to protect the user from doing stupid things. Use with care.
+//config: Support the 'find -delete' option for deleting files and directories.
+//config: WARNING: This option can do much harm if used wrong. Busybox will not
+//config: try to protect the user from doing stupid things. Use with care.
//config:
//config:config FEATURE_FIND_PATH
//config: bool "Enable -path: match pathname with shell pattern"
//config: default y
//config: depends on FIND
//config: help
-//config: The -path option matches whole pathname instead of just filename.
+//config: The -path option matches whole pathname instead of just filename.
//config:
//config:config FEATURE_FIND_REGEX
//config: bool "Enable -regex: match pathname with regex"
//config: default y
//config: depends on FIND
//config: help
-//config: The -regex option matches whole pathname against regular expression.
+//config: The -regex option matches whole pathname against regular expression.
//config:
//config:config FEATURE_FIND_CONTEXT
//config: bool "Enable -context: security context matching"
//config: default n
//config: depends on FIND && SELINUX
//config: help
-//config: Support the 'find -context' option for matching security context.
+//config: Support the 'find -context' option for matching security context.
//config:
//config:config FEATURE_FIND_LINKS
//config: bool "Enable -links: link count matching"
//config: default y
//config: depends on FIND
//config: help
-//config: Support the 'find -links' option for matching number of links.
+//config: Support the 'find -links' option for matching number of links.
//applet:IF_FIND(APPLET_NOEXEC(find, find, BB_DIR_USR_BIN, BB_SUID_DROP, find))