diff options
author | Denys Vlasenko | 2010-05-09 04:22:48 +0200 |
---|---|---|
committer | Denys Vlasenko | 2010-05-09 04:22:48 +0200 |
commit | 7fb68f199f037cb69363c8df5c934a27adc699f7 (patch) | |
tree | 2eb01a3bc4b3caf6bd7dd4fed6984716fd7ca89a /findutils/xargs.c | |
parent | 6774386d95cec54258f23f69bc287c99e205ebdf (diff) | |
download | busybox-7fb68f199f037cb69363c8df5c934a27adc699f7.zip busybox-7fb68f199f037cb69363c8df5c934a27adc699f7.tar.gz |
make it possible to keep Config/Kbuild snippets in *.c files
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'findutils/xargs.c')
-rw-r--r-- | findutils/xargs.c | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/findutils/xargs.c b/findutils/xargs.c index 3785f1e..c55ac57 100644 --- a/findutils/xargs.c +++ b/findutils/xargs.c @@ -17,6 +17,47 @@ * */ +//kbuild:lib-$(CONFIG_XARGS) += xargs.o +//config: +//config:config XARGS +//config: bool "xargs" +//config: default n +//config: help +//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 n +//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: +//config:config FEATURE_XARGS_SUPPORT_QUOTES +//config: bool "Enable single and double quotes and backslash" +//config: default n +//config: depends on XARGS +//config: help +//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 n +//config: depends on XARGS +//config: help +//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 n +//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. + #include "libbb.h" /* This is a NOEXEC applet. Be very careful! */ |