sort: help text does not need to say that -mST are supported but ignored
authorDenys Vlasenko <vda.linux@googlemail.com>
Sat, 2 Apr 2016 15:39:50 +0000 (17:39 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Sat, 2 Apr 2016 15:39:50 +0000 (17:39 +0200)
Such information is useless for users of "sort --help"

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
coreutils/sort.c

index 07d903388a61458936d9341a1acb9c5cd89580fb..c8b42c7192407e62ddf5e530b4f6586f6e9e91ea 100644 (file)
@@ -14,7 +14,7 @@
 
 //usage:#define sort_trivial_usage
 //usage:       "[-nru"
-//usage:       IF_FEATURE_SORT_BIG("gMcszbdfimSTokt] [-o FILE] [-k start[.offset][opts][,end[.offset][opts]] [-t CHAR")
+//usage:       IF_FEATURE_SORT_BIG("gMcszbdfiokt] [-o FILE] [-k start[.offset][opts][,end[.offset][opts]] [-t CHAR")
 //usage:       "] [FILE]..."
 //usage:#define sort_full_usage "\n\n"
 //usage:       "Sort lines of text\n"
 //usage:     "\n       -u      Suppress duplicate lines"
 //usage:       IF_FEATURE_SORT_BIG(
 //usage:     "\n       -z      Lines are terminated by NUL, not newline"
-//usage:     "\n       -mST    Ignored for GNU compatibility")
+////usage:     "\n     -m      Ignored for GNU compatibility"
+////usage:     "\n     -S BUFSZ Ignored for GNU compatibility"
+////usage:     "\n     -T TMPDIR Ignored for GNU compatibility"
+//usage:       )
 //usage:
 //usage:#define sort_example_usage
 //usage:       "$ echo -e \"e\\nf\\nb\\nd\\nc\\na\" | sort\n"