diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2006-05-25 16:47:43 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2006-05-25 16:47:43 +0000 |
commit | 5002b0ba7930677271bc42a2e291779a3e02bc62 (patch) | |
tree | 5d8fb68a30694c0ec5ff79794808f1f307f03eae /src | |
parent | 066e22e537dbff01e356405bc0d8ca90a3a7980b (diff) | |
download | coreutils-5002b0ba7930677271bc42a2e291779a3e02bc62.tar.xz |
(usage): Remove mention of --seed.
Diffstat (limited to 'src')
-rw-r--r-- | src/sort.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/sort.c b/src/sort.c index 664d1453f..d3a37f3d1 100644 --- a/src/sort.c +++ b/src/sort.c @@ -317,7 +317,6 @@ Other options:\n\ -k, --key=POS1[,POS2] start a key at POS1, end it at POS2 (origin 1)\n\ -m, --merge merge already sorted files; do not sort\n\ -o, --output=FILE write result to FILE instead of standard output\n\ - --seed=STRING seed random hash function with STRING\n\ -s, --stable stabilize sort by disabling last-resort comparison\n\ -S, --buffer-size=SIZE use SIZE for main memory buffer\n\ "), stdout); @@ -389,7 +388,7 @@ static struct option const long_options[] = {"temporary-directory", required_argument, NULL, 'T'}, {"unique", no_argument, NULL, 'u'}, {"zero-terminated", no_argument, NULL, 'z'}, - {"seed", required_argument, NULL, SEED_OPTION}, + {"seed", required_argument, NULL, SEED_OPTION}, /* This will go away soon. */ {GETOPT_HELP_OPTION_DECL}, {GETOPT_VERSION_OPTION_DECL}, {NULL, 0, NULL, 0}, |