aboutsummaryrefslogtreecommitdiff
path: root/findutils
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
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')
-rw-r--r--findutils/find.c66
-rw-r--r--findutils/grep.c12
-rw-r--r--findutils/xargs.c22
3 files changed, 50 insertions, 50 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))
diff --git a/findutils/grep.c b/findutils/grep.c
index cbbad731c..568ab12c2 100644
--- a/findutils/grep.c
+++ b/findutils/grep.c
@@ -22,28 +22,28 @@
//config: bool "grep (8.5 kb)"
//config: default y
//config: help
-//config: grep is used to search files for a specified pattern.
+//config: grep is used to search files for a specified pattern.
//config:
//config:config EGREP
//config: bool "egrep (7.6 kb)"
//config: default y
//config: help
-//config: Alias to "grep -E".
+//config: Alias to "grep -E".
//config:
//config:config FGREP
//config: bool "fgrep (7.6 kb)"
//config: default y
//config: help
-//config: Alias to "grep -F".
+//config: Alias to "grep -F".
//config:
//config:config FEATURE_GREP_CONTEXT
//config: bool "Enable before and after context flags (-A, -B and -C)"
//config: default y
//config: depends on GREP || EGREP || FGREP
//config: help
-//config: Print the specified number of leading (-B) and/or trailing (-A)
-//config: context surrounding our matching lines.
-//config: Print the specified number of context lines (-C).
+//config: Print the specified number of leading (-B) and/or trailing (-A)
+//config: context surrounding our matching lines.
+//config: Print the specified number of context lines (-C).
//applet:IF_GREP(APPLET(grep, BB_DIR_BIN, BB_SUID_DROP))
// APPLET_ODDNAME:name main location suid_type help
diff --git a/findutils/xargs.c b/findutils/xargs.c
index 078ce3bc7..2d0d1c8b9 100644
--- a/findutils/xargs.c
+++ b/findutils/xargs.c
@@ -19,47 +19,47 @@
//config: bool "xargs (6.7 kb)"
//config: default y
//config: help
-//config: xargs is used to execute a specified command for
-//config: every item from standard input.
+//config: xargs is used to execute a specified command for
+//config: every item from standard input.
//config:
//config:config FEATURE_XARGS_SUPPORT_CONFIRMATION
//config: bool "Enable -p: prompt and confirmation"
//config: default y
//config: depends on XARGS
//config: help
-//config: Support -p: prompt the user whether to run each command
-//config: line and read a line from the terminal.
+//config: Support -p: prompt the user whether to run each command
+//config: line and read a line from the terminal.
//config:
//config:config FEATURE_XARGS_SUPPORT_QUOTES
//config: bool "Enable single and double quotes and backslash"
//config: default y
//config: depends on XARGS
//config: help
-//config: Support quoting in the input.
+//config: Support quoting in the input.
//config:
//config:config FEATURE_XARGS_SUPPORT_TERMOPT
//config: bool "Enable -x: exit if -s or -n is exceeded"
//config: default y
//config: depends on XARGS
//config: help
-//config: Support -x: exit if the command size (see the -s or -n option)
-//config: is exceeded.
+//config: Support -x: exit if the command size (see the -s or -n option)
+//config: is exceeded.
//config:
//config:config FEATURE_XARGS_SUPPORT_ZERO_TERM
//config: bool "Enable -0: NUL-terminated input"
//config: default y
//config: depends on XARGS
//config: help
-//config: Support -0: input items are terminated by a NUL character
-//config: instead of whitespace, and the quotes and backslash
-//config: are not special.
+//config: Support -0: input items are terminated by a NUL character
+//config: instead of whitespace, and the quotes and backslash
+//config: are not special.
//config:
//config:config FEATURE_XARGS_SUPPORT_REPL_STR
//config: bool "Enable -I STR: string to replace"
//config: default y
//config: depends on XARGS
//config: help
-//config: Support -I STR and -i[STR] options.
+//config: Support -I STR and -i[STR] options.
//applet:IF_XARGS(APPLET_NOEXEC(xargs, xargs, BB_DIR_USR_BIN, BB_SUID_DROP, xargs))