Remove the bogus -? option after reading the getopt() manual :)

This commit is contained in:
des 1998-04-24 20:15:43 +00:00
parent 7d48e85bb7
commit fc8308de88
3 changed files with 6 additions and 8 deletions

View File

@ -33,7 +33,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)ls.1 8.7 (Berkeley) 7/29/94
.\" $Id: ls.1,v 1.18 1998/04/24 07:49:46 des Exp $
.\" $Id: ls.1,v 1.19 1998/04/24 12:43:26 des Exp $
.\"
.Dd July 29, 1994
.Dt LS 1
@ -43,7 +43,7 @@
.Nd list directory contents
.Sh SYNOPSIS
.Nm ls
.Op Fl ?ABCFHLPRTWabcdfgikloqrstu1
.Op Fl ABCFHLPRTWabcdfgikloqrstu1
.Op Ar file ...
.Sh DESCRIPTION
For each operand that names a
@ -70,8 +70,6 @@ lexicographical order.
.Pp
The following options are available:
.Bl -tag -width indent
.It Fl ?
Displays a short list of valid options.
.It Fl A
List all entries except for
.Ql \&.

View File

@ -45,7 +45,7 @@ static const char copyright[] =
static char sccsid[] = "@(#)ls.c 8.5 (Berkeley) 4/2/94";
#else
static const char rcsid[] =
"$Id: ls.c,v 1.19 1998/04/24 07:49:47 des Exp $";
"$Id: ls.c,v 1.20 1998/04/24 12:43:26 des Exp $";
#endif
#endif /* not lint */
@ -135,7 +135,7 @@ main(argc, argv)
f_listdot = 1;
fts_options = FTS_PHYSICAL;
while ((ch = getopt(argc, argv, "?1ABCFHLPRTWabcdfgikloqrstu")) != -1) {
while ((ch = getopt(argc, argv, "1ABCFHLPRTWabcdfgikloqrstu")) != -1) {
switch (ch) {
/*
* The -1, -C and -l options all override each other so shell

View File

@ -39,7 +39,7 @@
static char sccsid[] = "@(#)util.c 8.3 (Berkeley) 4/2/94";
#else
static const char rcsid[] =
"$Id: util.c,v 1.13 1998/04/24 07:49:51 des Exp $";
"$Id: util.c,v 1.14 1998/04/24 12:43:26 des Exp $";
#endif
#endif /* not lint */
@ -158,7 +158,7 @@ prn_octal(s)
void
usage()
{
(void)fprintf(stderr, "usage: ls [-?ACFHLPRTWacdfgikloqrstu1]"
(void)fprintf(stderr, "usage: ls [-ACFHLPRTWacdfgikloqrstu1]"
" [file ...]\n");
exit(1);
}