diff options
author | Yousong Zhou <yszhou4tech@gmail.com> | 2019-02-27 03:22:35 +0000 |
---|---|---|
committer | Yousong Zhou <yszhou4tech@gmail.com> | 2019-03-01 08:09:41 +0000 |
commit | 157072ea2b7bdbe8de1339936a5933061a27e67a (patch) | |
tree | ba4dd0a5e7056e73fdec997a6325955353c8a4a0 /package/utils/busybox/config/findutils | |
parent | b462bab0994673be5cafaebdc58fa4e6bf62341d (diff) | |
download | upstream-157072ea2b7bdbe8de1339936a5933061a27e67a.tar.gz upstream-157072ea2b7bdbe8de1339936a5933061a27e67a.tar.bz2 upstream-157072ea2b7bdbe8de1339936a5933061a27e67a.zip |
busybox: unindent busybox Config.in
This is to align with upstream change 72089cf ("config: deindent all
help texts") and to make the follow-up change syncing Config.in files
with current busybox version more reviewable
It was made with the following commands
cd package/utils/busybox/config
find . -name 'Config.in' | xargs sed -ir -e 's/^\t \([^ ]\)/\t\1/'
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
Diffstat (limited to 'package/utils/busybox/config/findutils')
-rw-r--r-- | package/utils/busybox/config/findutils/Config.in | 100 |
1 files changed, 50 insertions, 50 deletions
diff --git a/package/utils/busybox/config/findutils/Config.in b/package/utils/busybox/config/findutils/Config.in index 3393adbe3b..0e9a1392f7 100644 --- a/package/utils/busybox/config/findutils/Config.in +++ b/package/utils/busybox/config/findutils/Config.in @@ -10,33 +10,33 @@ config BUSYBOX_CONFIG_FIND bool "find" default BUSYBOX_DEFAULT_FIND help - find is used to search your system to find specified files. + find is used to search your system to find specified files. config BUSYBOX_CONFIG_FEATURE_FIND_PRINT0 bool "Enable -print0: NUL-terminated output" default BUSYBOX_DEFAULT_FEATURE_FIND_PRINT0 depends on BUSYBOX_CONFIG_FIND help - Causes output names to be separated by a NUL character - rather than a newline. This allows names that contain - newlines and other whitespace to be more easily - interpreted by other programs. + Causes output names to be separated by a NUL character + rather than a newline. This allows names that contain + newlines and other whitespace to be more easily + interpreted by other programs. config BUSYBOX_CONFIG_FEATURE_FIND_MTIME bool "Enable -mtime: modified time matching" default BUSYBOX_DEFAULT_FEATURE_FIND_MTIME depends on BUSYBOX_CONFIG_FIND help - Allow searching based on the modification time of - files, in days. + Allow searching based on the modification time of + files, in days. config BUSYBOX_CONFIG_FEATURE_FIND_MMIN bool "Enable -mmin: modified time matching by minutes" default BUSYBOX_DEFAULT_FEATURE_FIND_MMIN depends on BUSYBOX_CONFIG_FIND help - Allow searching based on the modification time of - files, in minutes. + Allow searching based on the modification time of + files, in minutes. config BUSYBOX_CONFIG_FEATURE_FIND_PERM bool "Enable -perm: permissions matching" @@ -48,8 +48,8 @@ config BUSYBOX_CONFIG_FEATURE_FIND_TYPE default BUSYBOX_DEFAULT_FEATURE_FIND_TYPE depends on BUSYBOX_CONFIG_FIND help - Enable searching based on file type (file, - directory, socket, device, etc.). + Enable searching based on file type (file, + directory, socket, device, etc.). config BUSYBOX_CONFIG_FEATURE_FIND_XDEV bool "Enable -xdev: 'stay in filesystem'" @@ -66,8 +66,8 @@ config BUSYBOX_CONFIG_FEATURE_FIND_NEWER default BUSYBOX_DEFAULT_FEATURE_FIND_NEWER depends on BUSYBOX_CONFIG_FIND help - Support the 'find -newer' option for finding any files which have - modification time that is more recent than the specified FILE. + Support the 'find -newer' option for finding any files which have + modification time that is more recent than the specified FILE. config BUSYBOX_CONFIG_FEATURE_FIND_INUM bool "Enable -inum: inode number matching" @@ -79,18 +79,18 @@ config BUSYBOX_CONFIG_FEATURE_FIND_EXEC default BUSYBOX_DEFAULT_FEATURE_FIND_EXEC depends on BUSYBOX_CONFIG_FIND help - Support the 'find -exec' option for executing commands based upon - the files matched. + Support the 'find -exec' option for executing commands based upon + the files matched. config BUSYBOX_CONFIG_FEATURE_FIND_EXEC_PLUS bool "Enable -exec ... {} +" default BUSYBOX_DEFAULT_FEATURE_FIND_EXEC_PLUS depends on BUSYBOX_CONFIG_FEATURE_FIND_EXEC help - Support the 'find -exec ... {} +' option for executing commands - for all matched files at once. - Without this option, -exec + is a synonym for -exec ; - (IOW: it works correctly, but without expected speedup) + Support the 'find -exec ... {} +' option for executing commands + for all matched files at once. + Without this option, -exec + is a synonym for -exec ; + (IOW: it works correctly, but without expected speedup) config BUSYBOX_CONFIG_FEATURE_FIND_USER bool "Enable -user: username/uid matching" @@ -107,23 +107,23 @@ config BUSYBOX_CONFIG_FEATURE_FIND_NOT default BUSYBOX_DEFAULT_FEATURE_FIND_NOT depends on BUSYBOX_CONFIG_FIND help - Support the '!' operator to invert the test results. - If 'Enable full-blown desktop' is enabled, then will also support - the non-POSIX notation '-not'. + Support the '!' operator to invert the test results. + If 'Enable full-blown desktop' is enabled, then will also support + the non-POSIX notation '-not'. config BUSYBOX_CONFIG_FEATURE_FIND_DEPTH bool "Enable -depth" default BUSYBOX_DEFAULT_FEATURE_FIND_DEPTH depends on BUSYBOX_CONFIG_FIND help - Process each directory's contents before the directory itself. + Process each directory's contents before the directory itself. config BUSYBOX_CONFIG_FEATURE_FIND_PAREN bool "Enable parens in options" default BUSYBOX_DEFAULT_FEATURE_FIND_PAREN depends on BUSYBOX_CONFIG_FIND help - Enable usage of parens '(' to specify logical order of arguments. + Enable usage of parens '(' to specify logical order of arguments. config BUSYBOX_CONFIG_FEATURE_FIND_SIZE bool "Enable -size: file size matching" @@ -135,115 +135,115 @@ config BUSYBOX_CONFIG_FEATURE_FIND_PRUNE default BUSYBOX_DEFAULT_FEATURE_FIND_PRUNE depends on BUSYBOX_CONFIG_FIND help - If the file is a directory, don't descend into it. Useful for - exclusion .svn and CVS directories. + If the file is a directory, don't descend into it. Useful for + exclusion .svn and CVS directories. config BUSYBOX_CONFIG_FEATURE_FIND_DELETE bool "Enable -delete: delete files/dirs" default BUSYBOX_DEFAULT_FEATURE_FIND_DELETE depends on BUSYBOX_CONFIG_FIND && BUSYBOX_CONFIG_FEATURE_FIND_DEPTH help - Support the 'find -delete' option for deleting files and directories. - WARNING: This option can do much harm if used wrong. Busybox will not - try to protect the user from doing stupid things. Use with care. + Support the 'find -delete' option for deleting files and directories. + WARNING: This option can do much harm if used wrong. Busybox will not + try to protect the user from doing stupid things. Use with care. config BUSYBOX_CONFIG_FEATURE_FIND_PATH bool "Enable -path: match pathname with shell pattern" default BUSYBOX_DEFAULT_FEATURE_FIND_PATH depends on BUSYBOX_CONFIG_FIND help - The -path option matches whole pathname instead of just filename. + The -path option matches whole pathname instead of just filename. config BUSYBOX_CONFIG_FEATURE_FIND_REGEX bool "Enable -regex: match pathname with regex" default BUSYBOX_DEFAULT_FEATURE_FIND_REGEX depends on BUSYBOX_CONFIG_FIND help - The -regex option matches whole pathname against regular expression. + The -regex option matches whole pathname against regular expression. config BUSYBOX_CONFIG_FEATURE_FIND_CONTEXT bool "Enable -context: security context matching" default BUSYBOX_DEFAULT_FEATURE_FIND_CONTEXT depends on BUSYBOX_CONFIG_FIND && BUSYBOX_CONFIG_SELINUX help - Support the 'find -context' option for matching security context. + Support the 'find -context' option for matching security context. config BUSYBOX_CONFIG_FEATURE_FIND_LINKS bool "Enable -links: link count matching" default BUSYBOX_DEFAULT_FEATURE_FIND_LINKS depends on BUSYBOX_CONFIG_FIND help - Support the 'find -links' option for matching number of links. + Support the 'find -links' option for matching number of links. config BUSYBOX_CONFIG_GREP bool "grep" default BUSYBOX_DEFAULT_GREP help - grep is used to search files for a specified pattern. + grep is used to search files for a specified pattern. config BUSYBOX_CONFIG_EGREP bool "egrep" default BUSYBOX_DEFAULT_EGREP help - Alias to "grep -E" + Alias to "grep -E" config BUSYBOX_CONFIG_FGREP bool "fgrep" default BUSYBOX_DEFAULT_FGREP help - Alias to "grep -F" + Alias to "grep -F" config BUSYBOX_CONFIG_FEATURE_GREP_CONTEXT bool "Enable before and after context flags (-A, -B and -C)" default BUSYBOX_DEFAULT_FEATURE_GREP_CONTEXT depends on BUSYBOX_CONFIG_GREP || BUSYBOX_CONFIG_EGREP || BUSYBOX_CONFIG_FGREP help - Print the specified number of leading (-B) and/or trailing (-A) - context surrounding our matching lines. - Print the specified number of context lines (-C). + Print the specified number of leading (-B) and/or trailing (-A) + context surrounding our matching lines. + Print the specified number of context lines (-C). config BUSYBOX_CONFIG_XARGS bool "xargs" default BUSYBOX_DEFAULT_XARGS help - xargs is used to execute a specified command for - every item from standard input. + xargs is used to execute a specified command for + every item from standard input. config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION bool "Enable -p: prompt and confirmation" default BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_CONFIRMATION depends on BUSYBOX_CONFIG_XARGS help - Support -p: prompt the user whether to run each command - line and read a line from the terminal. + Support -p: prompt the user whether to run each command + line and read a line from the terminal. config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_QUOTES bool "Enable single and double quotes and backslash" default BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_QUOTES depends on BUSYBOX_CONFIG_XARGS help - Support quoting in the input. + Support quoting in the input. config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT bool "Enable -x: exit if -s or -n is exceeded" default BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_TERMOPT depends on BUSYBOX_CONFIG_XARGS help - Support -x: exit if the command size (see the -s or -n option) - is exceeded. + Support -x: exit if the command size (see the -s or -n option) + is exceeded. config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM bool "Enable -0: NUL-terminated input" default BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_ZERO_TERM depends on BUSYBOX_CONFIG_XARGS help - Support -0: input items are terminated by a NUL character - instead of whitespace, and the quotes and backslash - are not special. + Support -0: input items are terminated by a NUL character + instead of whitespace, and the quotes and backslash + are not special. config BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_REPL_STR bool "Enable -I STR: string to replace" default BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_REPL_STR depends on BUSYBOX_CONFIG_XARGS help - Support -I STR and -i[STR] options. + Support -I STR and -i[STR] options. endmenu |