diff options
author | Denis Vlasenko | 2007-08-13 14:10:24 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-08-13 14:10:24 +0000 |
commit | 3952f20c24ff3eed2ef6f4a9abd2d8a0aaa34a6e (patch) | |
tree | 038567c7d5d0a3c9bfe40eeb534ffc9559423b9d /coreutils/Config.in | |
parent | 08294dbf5bc6fb1ea0b185488675d91169e231ce (diff) | |
download | busybox-3952f20c24ff3eed2ef6f4a9abd2d8a0aaa34a6e.zip busybox-3952f20c24ff3eed2ef6f4a9abd2d8a0aaa34a6e.tar.gz |
expand, unexpand: new applets from Tito <farmatito@tiscali.it>
Diffstat (limited to 'coreutils/Config.in')
-rw-r--r-- | coreutils/Config.in | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/coreutils/Config.in b/coreutils/Config.in index cb5241e..3370b2a 100644 --- a/coreutils/Config.in +++ b/coreutils/Config.in @@ -200,6 +200,19 @@ config FEATURE_ENV_LONG_OPTIONS help Support long options for the env applet. +config EXPAND + bool "expand" + default n + help + By default, convert all tabs to spaces. + +config FEATURE_EXPAND_LONG_OPTIONS + bool "Enable long options" + default n + depends on EXPAND && GETOPT_LONG + help + Support long options for the expand applet. + config EXPR bool "expr" default n @@ -655,6 +668,19 @@ config UNAME help uname is used to print system information. +config UNEXPAND + bool "unexpand" + default n + help + By default, convert only leading sequences of blanks to tabs. + +config FEATURE_UNEXPAND_LONG_OPTIONS + bool "Enable long options" + default n + depends on UNEXPAND && GETOPT_LONG + help + Support long options for the unexpand applet. + config UNIQ bool "uniq" default n |