diff options
author | Glenn L McGrath | 2003-10-10 23:15:23 +0000 |
---|---|---|
committer | Glenn L McGrath | 2003-10-10 23:15:23 +0000 |
commit | d12061b299a096359b998e0e4415ebe77b45c96b (patch) | |
tree | 81365b3c63842635d51d2af65695a5a59aeafdb6 /findutils | |
parent | 61796945e37a6cd9dd230e8e7a86536ad58fcd14 (diff) | |
download | busybox-d12061b299a096359b998e0e4415ebe77b45c96b.zip busybox-d12061b299a096359b998e0e4415ebe77b45c96b.tar.gz |
Vodz last_patch_117, update options for new xargs
Diffstat (limited to 'findutils')
-rw-r--r-- | findutils/Config.in | 36 |
1 files changed, 30 insertions, 6 deletions
diff --git a/findutils/Config.in b/findutils/Config.in index c66da74..da8017a 100644 --- a/findutils/Config.in +++ b/findutils/Config.in @@ -97,13 +97,37 @@ config CONFIG_XARGS xargs is used to execute a specified command on every item from standard input. -config CONFIG_FEATURE_XARGS_FANCY - bool " Enable extra options (-x -s -n and -E)" - default y +config CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION + bool " Enable prompt and confirmation option -p" + default n depends on CONFIG_XARGS help - Default xargs only provides the -t option, this enables the - x, s, n and E options. + Support prompt the user about whether to run each command + line and read a line from the terminal. -endmenu +config CONFIG_FEATURE_XARGS_SUPPORT_QUOTES + bool " Enable support single and double quotes and backslash" + default n + depends on CONFIG_XARGS + help + Default xargs unsupport single and double quotes + and backslash for can use aruments with spaces. +config CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT + bool " Enable support options -x" + default n + depends on CONFIG_XARGS + help + Enable support exit if the size (see the -s or -n option) + is exceeded. + +config CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM + bool " Enable options -0" + default n + depends on CONFIG_XARGS + help + Enable input filenames are terminated by a null character + instead of by whitespace, and the quotes and backslash + are not special. + +endmenu |