summaryrefslogtreecommitdiff
path: root/src/csplit.c
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2012-01-08 14:08:03 +0100
committerJim Meyering <meyering@redhat.com>2012-01-09 21:50:08 +0100
commit9af0dced5a2eb167ec7b9dfe3f358f214e45d41a (patch)
treeb182495d17047e581cbee89db69d76d87173b0cc /src/csplit.c
parent36b9a1b6ac2730e78c14552fd55795fe10862a3d (diff)
downloadcoreutils-9af0dced5a2eb167ec7b9dfe3f358f214e45d41a.tar.xz
maint: convert `...' to '...' in --help output
All affected lines end with \ or \n\, so run this command until it produces no new changes (4 times): git grep -E -l '`[^ ]+'\''.*\\' src \ |xargs perl -pi -e 's/`([^ ]+'\''.*\\)/'\''$1/'
Diffstat (limited to 'src/csplit.c')
-rw-r--r--src/csplit.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/csplit.c b/src/csplit.c
index 6488b8412..fbd10bb0e 100644
--- a/src/csplit.c
+++ b/src/csplit.c
@@ -1451,7 +1451,7 @@ Usage: %s [OPTION]... FILE PATTERN...\n\
"),
program_name);
fputs (_("\
-Output pieces of FILE separated by PATTERN(s) to files `xx00', `xx01', ...,\n\
+Output pieces of FILE separated by PATTERN(s) to files 'xx00', 'xx01', ...,\n\
and output byte counts of each piece to standard output.\n\
\n\
"), stdout);
@@ -1460,7 +1460,7 @@ Mandatory arguments to long options are mandatory for short options too.\n\
"), stdout);
fputs (_("\
-b, --suffix-format=FORMAT use sprintf FORMAT instead of %02d\n\
- -f, --prefix=PREFIX use PREFIX instead of `xx'\n\
+ -f, --prefix=PREFIX use PREFIX instead of 'xx'\n\
-k, --keep-files do not remove output files on errors\n\
"), stdout);
fputs (_("\
@@ -1482,7 +1482,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 required `+' or `-' followed by a positive integer.\n\
+A line OFFSET is a required '+' or '-' followed by a positive integer.\n\
"), stdout);
emit_ancillary_info ();
}