diff options
Diffstat (limited to 'coreutils/Config.in')
-rw-r--r-- | coreutils/Config.in | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/coreutils/Config.in b/coreutils/Config.in index 50e605dc2..31e97c145 100644 --- a/coreutils/Config.in +++ b/coreutils/Config.in | |||
@@ -436,7 +436,7 @@ config CONFIG_SORT | |||
436 | help | 436 | help |
437 | sort is used to sort lines of text in specified files. | 437 | sort is used to sort lines of text in specified files. |
438 | 438 | ||
439 | config CONFIG_SORT_BIG | 439 | config CONFIG_FEATURE_SORT_BIG |
440 | bool " full SuSv3 compliant sort (Support -ktcsbdfiozgM)" | 440 | bool " full SuSv3 compliant sort (Support -ktcsbdfiozgM)" |
441 | default y | 441 | default y |
442 | depends on CONFIG_SORT | 442 | depends on CONFIG_SORT |
@@ -547,6 +547,25 @@ config CONFIG_TR | |||
547 | tr is used to squeeze, and/or delete characters from standard | 547 | tr is used to squeeze, and/or delete characters from standard |
548 | input, writing to standard output. | 548 | input, writing to standard output. |
549 | 549 | ||
550 | config CONFIG_FEATURE_TR_CLASSES | ||
551 | bool " Enable character classes (such as [:upper:])" | ||
552 | default n | ||
553 | depends on CONFIG_TR | ||
554 | help | ||
555 | Enable character classes, enabling commands such as: | ||
556 | tr [:upper:] [:lower:] to convert input into lowercase. | ||
557 | |||
558 | config CONFIG_FEATURE_TR_EQUIV | ||
559 | bool " Enable equivalence classes" | ||
560 | default n | ||
561 | depends on CONFIG_TR | ||
562 | help | ||
563 | Enable equivalence classes, which essentially add the enclosed | ||
564 | character to the current set. For instance, tr [=a=] xyz would | ||
565 | replace all instances of 'a' with 'xyz'. This option is mainly | ||
566 | useful for cases when no other way of expressing a character | ||
567 | is possible. | ||
568 | |||
550 | if CONFIG_HUSH || CONFIG_LASH || CONFIG_MSH | 569 | if CONFIG_HUSH || CONFIG_LASH || CONFIG_MSH |
551 | config CONFIG_TRUE | 570 | config CONFIG_TRUE |
552 | default y | 571 | default y |