diff options
Diffstat (limited to 'findutils/xargs.c')
-rw-r--r-- | findutils/xargs.c | 22 |
1 files changed, 11 insertions, 11 deletions
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 @@ | |||
19 | //config: bool "xargs (6.7 kb)" | 19 | //config: bool "xargs (6.7 kb)" |
20 | //config: default y | 20 | //config: default y |
21 | //config: help | 21 | //config: help |
22 | //config: xargs is used to execute a specified command for | 22 | //config: xargs is used to execute a specified command for |
23 | //config: every item from standard input. | 23 | //config: every item from standard input. |
24 | //config: | 24 | //config: |
25 | //config:config FEATURE_XARGS_SUPPORT_CONFIRMATION | 25 | //config:config FEATURE_XARGS_SUPPORT_CONFIRMATION |
26 | //config: bool "Enable -p: prompt and confirmation" | 26 | //config: bool "Enable -p: prompt and confirmation" |
27 | //config: default y | 27 | //config: default y |
28 | //config: depends on XARGS | 28 | //config: depends on XARGS |
29 | //config: help | 29 | //config: help |
30 | //config: Support -p: prompt the user whether to run each command | 30 | //config: Support -p: prompt the user whether to run each command |
31 | //config: line and read a line from the terminal. | 31 | //config: line and read a line from the terminal. |
32 | //config: | 32 | //config: |
33 | //config:config FEATURE_XARGS_SUPPORT_QUOTES | 33 | //config:config FEATURE_XARGS_SUPPORT_QUOTES |
34 | //config: bool "Enable single and double quotes and backslash" | 34 | //config: bool "Enable single and double quotes and backslash" |
35 | //config: default y | 35 | //config: default y |
36 | //config: depends on XARGS | 36 | //config: depends on XARGS |
37 | //config: help | 37 | //config: help |
38 | //config: Support quoting in the input. | 38 | //config: Support quoting in the input. |
39 | //config: | 39 | //config: |
40 | //config:config FEATURE_XARGS_SUPPORT_TERMOPT | 40 | //config:config FEATURE_XARGS_SUPPORT_TERMOPT |
41 | //config: bool "Enable -x: exit if -s or -n is exceeded" | 41 | //config: bool "Enable -x: exit if -s or -n is exceeded" |
42 | //config: default y | 42 | //config: default y |
43 | //config: depends on XARGS | 43 | //config: depends on XARGS |
44 | //config: help | 44 | //config: help |
45 | //config: Support -x: exit if the command size (see the -s or -n option) | 45 | //config: Support -x: exit if the command size (see the -s or -n option) |
46 | //config: is exceeded. | 46 | //config: is exceeded. |
47 | //config: | 47 | //config: |
48 | //config:config FEATURE_XARGS_SUPPORT_ZERO_TERM | 48 | //config:config FEATURE_XARGS_SUPPORT_ZERO_TERM |
49 | //config: bool "Enable -0: NUL-terminated input" | 49 | //config: bool "Enable -0: NUL-terminated input" |
50 | //config: default y | 50 | //config: default y |
51 | //config: depends on XARGS | 51 | //config: depends on XARGS |
52 | //config: help | 52 | //config: help |
53 | //config: Support -0: input items are terminated by a NUL character | 53 | //config: Support -0: input items are terminated by a NUL character |
54 | //config: instead of whitespace, and the quotes and backslash | 54 | //config: instead of whitespace, and the quotes and backslash |
55 | //config: are not special. | 55 | //config: are not special. |
56 | //config: | 56 | //config: |
57 | //config:config FEATURE_XARGS_SUPPORT_REPL_STR | 57 | //config:config FEATURE_XARGS_SUPPORT_REPL_STR |
58 | //config: bool "Enable -I STR: string to replace" | 58 | //config: bool "Enable -I STR: string to replace" |
59 | //config: default y | 59 | //config: default y |
60 | //config: depends on XARGS | 60 | //config: depends on XARGS |
61 | //config: help | 61 | //config: help |
62 | //config: Support -I STR and -i[STR] options. | 62 | //config: Support -I STR and -i[STR] options. |
63 | 63 | ||
64 | //applet:IF_XARGS(APPLET_NOEXEC(xargs, xargs, BB_DIR_USR_BIN, BB_SUID_DROP, xargs)) | 64 | //applet:IF_XARGS(APPLET_NOEXEC(xargs, xargs, BB_DIR_USR_BIN, BB_SUID_DROP, xargs)) |
65 | 65 | ||