diff options
author | Reuben Thomas <rrt@sc3d.org> | 2014-08-04 11:42:45 +0100 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2014-08-04 11:42:45 +0100 |
commit | 9bcc626190a7522c2a64dc60bfe0e3910dd4f075 (patch) | |
tree | 2dbea95c02a2ed270fc726e95943ef7d056daf1b /src | |
parent | f1fb49e80bbd41021b228dc59cf5199fa44ddac8 (diff) | |
download | coreutils-9bcc626190a7522c2a64dc60bfe0e3910dd4f075.tar.xz |
doc: indicate that FILE arguments are optional with rm -f
* src/rm.c (usage): s/FILE/[FILE]/.
Fixes http://bugs.gnu.org/18187
Diffstat (limited to 'src')
-rw-r--r-- | src/rm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -132,7 +132,7 @@ usage (int status) emit_try_help (); else { - printf (_("Usage: %s [OPTION]... FILE...\n"), program_name); + printf (_("Usage: %s [OPTION]... [FILE]...\n"), program_name); fputs (_("\ Remove (unlink) the FILE(s).\n\ \n\ |