summaryrefslogtreecommitdiff
path: root/src/rm.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-05-02 06:56:31 +0000
committerJim Meyering <jim@meyering.net>2000-05-02 06:56:31 +0000
commit4c69db64f21a87a9fd573d4dc37b1b681495d8c3 (patch)
tree499802852c077912e34b2d943115238e31e06a12 /src/rm.c
parentacd9c429c01f8deceb7e6cb161023144a0d1e0f7 (diff)
downloadcoreutils-4c69db64f21a87a9fd573d4dc37b1b681495d8c3.tar.xz
don't hard-code `rm'
Diffstat (limited to 'src/rm.c')
-rw-r--r--src/rm.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/rm.c b/src/rm.c
index 6b69f8750..92684b485 100644
--- a/src/rm.c
+++ b/src/rm.c
@@ -99,9 +99,10 @@ Remove (unlink) the FILE(s).\n\
\n\
To remove a file whose name starts with a `-', for example `-foo',\n\
use one of these commands:\n\
- rm -- -foo\n\
- rm ./-foo\n\
-"));
+ %s -- -foo\n\
+ %s ./-foo\n\
+"),
+ program_name, program_name);
puts (_("\nReport bugs to <bug-fileutils@gnu.org>."));
close_stdout ();
}