diff options
author | Jim Meyering <meyering@redhat.com> | 2012-01-08 14:08:03 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2012-01-09 21:50:08 +0100 |
commit | 9af0dced5a2eb167ec7b9dfe3f358f214e45d41a (patch) | |
tree | b182495d17047e581cbee89db69d76d87173b0cc /src/rm.c | |
parent | 36b9a1b6ac2730e78c14552fd55795fe10862a3d (diff) | |
download | coreutils-9af0dced5a2eb167ec7b9dfe3f358f214e45d41a.tar.gz coreutils-9af0dced5a2eb167ec7b9dfe3f358f214e45d41a.tar.bz2 coreutils-9af0dced5a2eb167ec7b9dfe3f358f214e45d41a.zip |
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/rm.c')
-rw-r--r-- | src/rm.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -151,8 +151,8 @@ Remove (unlink) the FILE(s).\n\ that of the corresponding command line argument\n\ "), stdout); fputs (_("\ - --no-preserve-root do not treat `/' specially\n\ - --preserve-root do not remove `/' (default)\n\ + --no-preserve-root do not treat '/' specially\n\ + --preserve-root do not remove '/' (default)\n\ -r, -R, --recursive remove directories and their contents recursively\n\ -v, --verbose explain what is being done\n\ "), stdout); @@ -165,7 +165,7 @@ option to remove each listed directory, too, along with all of its contents.\n\ "), stdout); printf (_("\ \n\ -To remove a file whose name starts with a `-', for example `-foo',\n\ +To remove a file whose name starts with a '-', for example '-foo',\n\ use one of these commands:\n\ %s -- -foo\n\ \n\ |