diff options
Diffstat (limited to 'coreutils/tr.c')
-rw-r--r-- | coreutils/tr.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/coreutils/tr.c b/coreutils/tr.c index 4281a2c69..64e4efc91 100644 --- a/coreutils/tr.c +++ b/coreutils/tr.c | |||
@@ -22,27 +22,27 @@ | |||
22 | //config: bool "tr (5.5 kb)" | 22 | //config: bool "tr (5.5 kb)" |
23 | //config: default y | 23 | //config: default y |
24 | //config: help | 24 | //config: help |
25 | //config: tr is used to squeeze, and/or delete characters from standard | 25 | //config: tr is used to squeeze, and/or delete characters from standard |
26 | //config: input, writing to standard output. | 26 | //config: input, writing to standard output. |
27 | //config: | 27 | //config: |
28 | //config:config FEATURE_TR_CLASSES | 28 | //config:config FEATURE_TR_CLASSES |
29 | //config: bool "Enable character classes (such as [:upper:])" | 29 | //config: bool "Enable character classes (such as [:upper:])" |
30 | //config: default y | 30 | //config: default y |
31 | //config: depends on TR | 31 | //config: depends on TR |
32 | //config: help | 32 | //config: help |
33 | //config: Enable character classes, enabling commands such as: | 33 | //config: Enable character classes, enabling commands such as: |
34 | //config: tr [:upper:] [:lower:] to convert input into lowercase. | 34 | //config: tr [:upper:] [:lower:] to convert input into lowercase. |
35 | //config: | 35 | //config: |
36 | //config:config FEATURE_TR_EQUIV | 36 | //config:config FEATURE_TR_EQUIV |
37 | //config: bool "Enable equivalence classes" | 37 | //config: bool "Enable equivalence classes" |
38 | //config: default y | 38 | //config: default y |
39 | //config: depends on TR | 39 | //config: depends on TR |
40 | //config: help | 40 | //config: help |
41 | //config: Enable equivalence classes, which essentially add the enclosed | 41 | //config: Enable equivalence classes, which essentially add the enclosed |
42 | //config: character to the current set. For instance, tr [=a=] xyz would | 42 | //config: character to the current set. For instance, tr [=a=] xyz would |
43 | //config: replace all instances of 'a' with 'xyz'. This option is mainly | 43 | //config: replace all instances of 'a' with 'xyz'. This option is mainly |
44 | //config: useful for cases when no other way of expressing a character | 44 | //config: useful for cases when no other way of expressing a character |
45 | //config: is possible. | 45 | //config: is possible. |
46 | 46 | ||
47 | //applet:IF_TR(APPLET(tr, BB_DIR_USR_BIN, BB_SUID_DROP)) | 47 | //applet:IF_TR(APPLET(tr, BB_DIR_USR_BIN, BB_SUID_DROP)) |
48 | 48 | ||