[2267] in Athena Bugs
4.3 Tahoe rm(1) man page
daemon@ATHENA.MIT.EDU (Jonathan I. Kamens)
Mon May 22 23:49:42 1989
Date: Mon, 22 May 89 23:49:12 EDT
From: Jonathan I. Kamens <jik@ATHENA.MIT.EDU>
To: bugs@ATHENA.MIT.EDU, bugs@berkeley.edu
The rm(1) man page in the 4.3 Tahoe source tree claims that "-" is the
null option that will cause rm to treat any arguments after it as
filename rather than as options. However, since rm has been modified
to use getopt in 4.3 Tahoe, the null option is "--" instead. The
following patch to the man page will fix the problem.
Jonathan Kamens USnail:
MIT Project Athena 410 Memorial Drive, No. 223F
jik@Athena.MIT.EDU Cambridge, MA 02139-4318
Office: 617-253-4261 Home: 617-225-8218
*************************
*** rm.1 Fri Oct 10 14:39:43 1986
--- /tmp/rm.1 Mon May 22 23:46:57 1989
***************
*** 17,23 ****
] [
.B \-i
] [
! .B \-
] file ...
.PP
.B rmdir
--- 17,23 ----
] [
.B \-i
] [
! .B \-\|\-
] file ...
.PP
.B rmdir
***************
*** 54,60 ****
whether to examine each directory.
.PP
The null option
! .B \-
indicates that all the arguments following it are to be treated as
file names. This allows the specification of file names starting with
a minus.
--- 54,60 ----
whether to examine each directory.
.PP
The null option
! .B \-\|\-
indicates that all the arguments following it are to be treated as
file names. This allows the specification of file names starting with
a minus.