diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-04-02 17:39:50 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-04-02 17:39:50 +0200 |
commit | c87e81f9440278dd46a3eddd1e0f4773afd46a95 (patch) | |
tree | ebe3cf70692c39baeb216f8e642a5bac3d57f98a /coreutils | |
parent | dd02a05e082b96d76707964179921107cd43cdd8 (diff) | |
download | busybox-w32-c87e81f9440278dd46a3eddd1e0f4773afd46a95.tar.gz busybox-w32-c87e81f9440278dd46a3eddd1e0f4773afd46a95.tar.bz2 busybox-w32-c87e81f9440278dd46a3eddd1e0f4773afd46a95.zip |
sort: help text does not need to say that -mST are supported but ignored
Such information is useless for users of "sort --help"
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/sort.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/coreutils/sort.c b/coreutils/sort.c index 07d903388..c8b42c719 100644 --- a/coreutils/sort.c +++ b/coreutils/sort.c | |||
@@ -14,7 +14,7 @@ | |||
14 | 14 | ||
15 | //usage:#define sort_trivial_usage | 15 | //usage:#define sort_trivial_usage |
16 | //usage: "[-nru" | 16 | //usage: "[-nru" |
17 | //usage: IF_FEATURE_SORT_BIG("gMcszbdfimSTokt] [-o FILE] [-k start[.offset][opts][,end[.offset][opts]] [-t CHAR") | 17 | //usage: IF_FEATURE_SORT_BIG("gMcszbdfiokt] [-o FILE] [-k start[.offset][opts][,end[.offset][opts]] [-t CHAR") |
18 | //usage: "] [FILE]..." | 18 | //usage: "] [FILE]..." |
19 | //usage:#define sort_full_usage "\n\n" | 19 | //usage:#define sort_full_usage "\n\n" |
20 | //usage: "Sort lines of text\n" | 20 | //usage: "Sort lines of text\n" |
@@ -41,7 +41,10 @@ | |||
41 | //usage: "\n -u Suppress duplicate lines" | 41 | //usage: "\n -u Suppress duplicate lines" |
42 | //usage: IF_FEATURE_SORT_BIG( | 42 | //usage: IF_FEATURE_SORT_BIG( |
43 | //usage: "\n -z Lines are terminated by NUL, not newline" | 43 | //usage: "\n -z Lines are terminated by NUL, not newline" |
44 | //usage: "\n -mST Ignored for GNU compatibility") | 44 | ////usage: "\n -m Ignored for GNU compatibility" |
45 | ////usage: "\n -S BUFSZ Ignored for GNU compatibility" | ||
46 | ////usage: "\n -T TMPDIR Ignored for GNU compatibility" | ||
47 | //usage: ) | ||
45 | //usage: | 48 | //usage: |
46 | //usage:#define sort_example_usage | 49 | //usage:#define sort_example_usage |
47 | //usage: "$ echo -e \"e\\nf\\nb\\nd\\nc\\na\" | sort\n" | 50 | //usage: "$ echo -e \"e\\nf\\nb\\nd\\nc\\na\" | sort\n" |