summaryrefslogtreecommitdiff
authorDenys Vlasenko <vda.linux@googlemail.com>2016-04-02 16:20:26 (GMT)
committer Denys Vlasenko <vda.linux@googlemail.com>2016-04-02 16:20:26 (GMT)
commitb14374a5ba7060d03c9859a5f61afdcdacc3dae6 (patch)
tree7b067a27853cc1f3e82a68879a06b164a5798917
parent8220399173cf8d25e37059cadac96ac30f94e82a (diff)
downloadbusybox-b14374a5ba7060d03c9859a5f61afdcdacc3dae6.zip
busybox-b14374a5ba7060d03c9859a5f61afdcdacc3dae6.tar.gz
busybox-b14374a5ba7060d03c9859a5f61afdcdacc3dae6.tar.bz2
sort: "-o FILE", not "-o", is the syntax
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat
-rw-r--r--coreutils/sort.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/coreutils/sort.c b/coreutils/sort.c
index c8b42c7..9139d9f 100644
--- a/coreutils/sort.c
+++ b/coreutils/sort.c
@@ -19,18 +19,18 @@
//usage:#define sort_full_usage "\n\n"
//usage: "Sort lines of text\n"
//usage: IF_FEATURE_SORT_BIG(
-//usage: "\n -b Ignore leading blanks"
+//usage: "\n -o FILE Output to FILE"
//usage: "\n -c Check whether input is sorted"
-//usage: "\n -d Dictionary order (blank or alphanumeric only)"
+//usage: "\n -b Ignore leading blanks"
//usage: "\n -f Ignore case"
-//usage: "\n -g General numerical sort"
//usage: "\n -i Ignore unprintable characters"
+//usage: "\n -d Dictionary order (blank or alphanumeric only)"
+//usage: "\n -g General numerical sort"
//usage: "\n -M Sort month"
//usage: )
//-h, --human-numeric-sort: compare human readable numbers (e.g., 2K 1G)
//usage: "\n -n Sort numbers"
//usage: IF_FEATURE_SORT_BIG(
-//usage: "\n -o Output to file"
//usage: "\n -t CHAR Field separator"
//usage: "\n -k N[,M] Sort by Nth field"
//usage: )