diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-04-02 18:20:26 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-04-02 18:20:26 +0200 |
commit | b14374a5ba7060d03c9859a5f61afdcdacc3dae6 (patch) | |
tree | 7b067a27853cc1f3e82a68879a06b164a5798917 /coreutils | |
parent | 8220399173cf8d25e37059cadac96ac30f94e82a (diff) | |
download | busybox-w32-b14374a5ba7060d03c9859a5f61afdcdacc3dae6.tar.gz busybox-w32-b14374a5ba7060d03c9859a5f61afdcdacc3dae6.tar.bz2 busybox-w32-b14374a5ba7060d03c9859a5f61afdcdacc3dae6.zip |
sort: "-o FILE", not "-o", is the syntax
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/sort.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/coreutils/sort.c b/coreutils/sort.c index c8b42c719..9139d9f47 100644 --- a/coreutils/sort.c +++ b/coreutils/sort.c | |||
@@ -19,18 +19,18 @@ | |||
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" |
21 | //usage: IF_FEATURE_SORT_BIG( | 21 | //usage: IF_FEATURE_SORT_BIG( |
22 | //usage: "\n -b Ignore leading blanks" | 22 | //usage: "\n -o FILE Output to FILE" |
23 | //usage: "\n -c Check whether input is sorted" | 23 | //usage: "\n -c Check whether input is sorted" |
24 | //usage: "\n -d Dictionary order (blank or alphanumeric only)" | 24 | //usage: "\n -b Ignore leading blanks" |
25 | //usage: "\n -f Ignore case" | 25 | //usage: "\n -f Ignore case" |
26 | //usage: "\n -g General numerical sort" | ||
27 | //usage: "\n -i Ignore unprintable characters" | 26 | //usage: "\n -i Ignore unprintable characters" |
27 | //usage: "\n -d Dictionary order (blank or alphanumeric only)" | ||
28 | //usage: "\n -g General numerical sort" | ||
28 | //usage: "\n -M Sort month" | 29 | //usage: "\n -M Sort month" |
29 | //usage: ) | 30 | //usage: ) |
30 | //-h, --human-numeric-sort: compare human readable numbers (e.g., 2K 1G) | 31 | //-h, --human-numeric-sort: compare human readable numbers (e.g., 2K 1G) |
31 | //usage: "\n -n Sort numbers" | 32 | //usage: "\n -n Sort numbers" |
32 | //usage: IF_FEATURE_SORT_BIG( | 33 | //usage: IF_FEATURE_SORT_BIG( |
33 | //usage: "\n -o Output to file" | ||
34 | //usage: "\n -t CHAR Field separator" | 34 | //usage: "\n -t CHAR Field separator" |
35 | //usage: "\n -k N[,M] Sort by Nth field" | 35 | //usage: "\n -k N[,M] Sort by Nth field" |
36 | //usage: ) | 36 | //usage: ) |