diff options
author | Jim Meyering <jim@meyering.net> | 2000-08-11 09:12:47 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-08-11 09:12:47 +0000 |
commit | 5018ccfb7efced663ae455e99d7d830730f62888 (patch) | |
tree | cf6d16a731b5ab39fc8077e91f5b53ca59d317d5 | |
parent | d0c866470095038ea95a8f346f359b04fd3cce34 (diff) | |
download | coreutils-5018ccfb7efced663ae455e99d7d830730f62888.tar.xz |
(usage): Describe -d and -i in a locale-independent way.
-rw-r--r-- | src/sort.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sort.c b/src/sort.c index 3586af91e..c81c51e31 100644 --- a/src/sort.c +++ b/src/sort.c @@ -280,10 +280,10 @@ Write sorted concatenation of all FILE(s) to standard output.\n\ starting with zero (contrast with the -k option)\n\ -b ignore leading blanks in sort fields or keys\n\ -c check if given files already sorted, do not sort\n\ - -d consider only [a-zA-Z0-9 ] characters in keys\n\ + -d consider only blanks and alphanumeric characters in keys\n\ -f fold lower case to upper case characters in keys\n\ -g compare according to general numerical value, imply -b\n\ - -i consider only [\\040-\\0176] characters in keys\n\ + -i consider only printable characters in keys\n\ -k POS1[,POS2] start a key at POS1, end it *at* POS2\n\ field numbers and character offsets are numbered\n\ starting with one (contrast with zero-based +POS form)\n\ |