From: Jim Meyering Date: Tue, 2 May 2000 06:56:31 +0000 (+0000) Subject: don't hard-code `rm' X-Git-Tag: SH-UTILS-2_0h~98 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4c69db64f21a87a9fd573d4dc37b1b681495d8c3;p=thirdparty%2Fcoreutils.git don't hard-code `rm' --- diff --git a/src/rm.c b/src/rm.c index 6b69f8750e..92684b4852 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 .")); close_stdout (); }