diff options
author | Jim Meyering <jim@meyering.net> | 2005-06-02 10:02:29 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-06-02 10:02:29 +0000 |
commit | 9c66558d8ecb0f72805b2ec48705e75b657f0635 (patch) | |
tree | 54f3d951367537ff7fd244fca6e5d2590fc6841f | |
parent | 2bc139bf8f1f80ac4e1d9da0c8660e8e81edc37f (diff) | |
download | coreutils-9c66558d8ecb0f72805b2ec48705e75b657f0635.tar.xz |
(usage): Put `Ordering options:' line where it belongs.
-rw-r--r-- | src/sort.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/sort.c b/src/sort.c index 9059d263d..7ba36ca33 100644 --- a/src/sort.c +++ b/src/sort.c @@ -286,13 +286,15 @@ Usage: %s [OPTION]... [FILE]...\n\ fputs (_("\ Write sorted concatenation of all FILE(s) to standard output.\n\ \n\ -Ordering options:\n\ -\n\ "), stdout); fputs (_("\ Mandatory arguments to long options are mandatory for short options too.\n\ "), stdout); fputs (_("\ +Ordering options:\n\ +\n\ +"), stdout); + fputs (_("\ -b, --ignore-leading-blanks ignore leading blanks\n\ -d, --dictionary-order consider only blanks and alphanumeric characters\n\ -f, --ignore-case fold lower case to upper case characters\n\ |