summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1996-08-08 20:49:28 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1996-08-08 20:49:28 +0000
commit5d85e16ee18f52ff58c0560f367a374e8e9ee9e0 (patch)
treeae197e9aa02aeeca328285cde04e60b96c8201d3 /usr.bin
parent662f3d9180d269032a46b2c5592c3518b9eb0576 (diff)
Fixed usage sumary and order of args in man page to be consistent.
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/xinstall/install.14
-rw-r--r--usr.bin/xinstall/xinstall.c8
2 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/xinstall/install.1 b/usr.bin/xinstall/install.1
index d6bcd9df99e..ff056abc606 100644
--- a/usr.bin/xinstall/install.1
+++ b/usr.bin/xinstall/install.1
@@ -1,4 +1,4 @@
-.\" $OpenBSD: install.1,v 1.3 1996/08/05 01:18:42 millert Exp $
+.\" $OpenBSD: install.1,v 1.4 1996/08/08 20:49:27 millert Exp $
.\" $NetBSD: install.1,v 1.4 1994/11/14 04:57:17 jtc Exp $
.\"
.\" Copyright (c) 1987, 1990, 1993
@@ -59,9 +59,9 @@
.Ar fileN directory
.Nm install
.Fl d
+.Op Fl g Ar group
.Op Fl m Ar mode
.Op Fl o Ar owner
-.Op Fl g Ar group
.Ar directory
\&...
.Sh DESCRIPTION
diff --git a/usr.bin/xinstall/xinstall.c b/usr.bin/xinstall/xinstall.c
index f6b5eb7511e..df078f40120 100644
--- a/usr.bin/xinstall/xinstall.c
+++ b/usr.bin/xinstall/xinstall.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: xinstall.c,v 1.4 1996/08/05 01:18:42 millert Exp $ */
+/* $OpenBSD: xinstall.c,v 1.5 1996/08/08 20:49:26 millert Exp $ */
/* $NetBSD: xinstall.c,v 1.9 1995/12/20 10:25:17 jonathan Exp $ */
/*
@@ -44,7 +44,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)xinstall.c 8.1 (Berkeley) 7/21/93";
#endif
-static char rcsid[] = "$OpenBSD: xinstall.c,v 1.4 1996/08/05 01:18:42 millert Exp $";
+static char rcsid[] = "$OpenBSD: xinstall.c,v 1.5 1996/08/08 20:49:26 millert Exp $";
#endif /* not lint */
#include <sys/param.h>
@@ -555,8 +555,8 @@ void
usage()
{
(void)fprintf(stderr, "\
-usage: install [-cs] [-f flags] [-g group] [-m mode] [-o owner] file1 file2\n\
- install [-cs] [-f flags] [-g group] [-m mode] [-o owner] file1 ... fileN directory\n\
+usage: install [-CcpSs] [-f flags] [-g group] [-m mode] [-o owner] file1 file2\n\
+ install [-CcpSs] [-f flags] [-g group] [-m mode] [-o owner] file1 ... fileN directory\n\
install -d [-g group] [-m mode] [-o owner] directory ...\n");
exit(EX_USAGE);
/* NOTREACHED */