summaryrefslogtreecommitdiff
path: root/src/csplit.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1994-03-25 23:38:00 +0000
committerJim Meyering <jim@meyering.net>1994-03-25 23:38:00 +0000
commit8bf5a6ed183fe03026e0f24b751a8303860c2d55 (patch)
treef3b7990388d4762e89c6f1cbf6580dbe30cee2aa /src/csplit.c
parent8bcd22c5104e44227dccd458e6e50940d9e9a462 (diff)
downloadcoreutils-8bf5a6ed183fe03026e0f24b751a8303860c2d55.tar.xz
.
Diffstat (limited to 'src/csplit.c')
-rw-r--r--src/csplit.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/csplit.c b/src/csplit.c
index ad13b2645..722aed9fb 100644
--- a/src/csplit.c
+++ b/src/csplit.c
@@ -236,7 +236,7 @@ static struct option const longopts[] =
{"keep-files", no_argument, NULL, 'k'},
{"elide-empty-files", no_argument, NULL, 'z'},
{"prefix", required_argument, NULL, 'f'},
- {"suffix", required_argument, NULL, 'b'},
+ {"suffix-format", required_argument, NULL, 'b'},
{"help", no_argument, &show_help, 1},
{"version", no_argument, &show_version, 1},
{NULL, 0, NULL, 0}
@@ -1574,8 +1574,8 @@ Usage: %s [OPTION]... FILE PATTERN...\n\
program_name);
printf ("\
\n\
- -b, --suffix=FORMAT use sprintf FORMAT instead of %%d\n\
- -f, --prefix=PREFIX use PREFIX instead of xx\n\
+ -b, --suffix-format=FORMAT use sprintf FORMAT instead of %%d\n\
+ -f, --prefix=PREFIX use PREFIX instead of `xx'\n\
-k, --keep-files do not remove output files on errors\n\
-n, --digits=DIGITS use specified number of digits instead of 2\n\
-s, --quiet, --silent do not print counts of output file sizes\n\
@@ -1591,7 +1591,7 @@ Read standard input if FILE is -. Each PATTERN may be:\n\
{INTEGER} repeat the previous pattern specified number of times\n\
{*} repeat the previous pattern as many times as possible\n\
\n\
-A line OFFSET is a `+' or `-' (required) followed by a positive integer.\n\
+A line OFFSET is a required `+' or `-' followed by a positive integer.\n\
");
}
exit (status);