BSD 4_2 development
authorCSRG <csrg@ucbvax.Berkeley.EDU>
Fri, 22 Apr 1983 08:16:56 +0000 (00:16 -0800)
committerCSRG <csrg@ucbvax.Berkeley.EDU>
Fri, 22 Apr 1983 08:16:56 +0000 (00:16 -0800)
Work on file usr/man/man1/install.1

Synthesized-from: CSRG/cd1/4.2

usr/man/man1/install.1 [new file with mode: 0644]

diff --git a/usr/man/man1/install.1 b/usr/man/man1/install.1
new file mode 100644 (file)
index 0000000..b3eb96b
--- /dev/null
@@ -0,0 +1,62 @@
+.TH INSTALL 1 "22 April 1983"
+.UC 4
+.SH NAME
+install \- install binaries
+.SH SYNOPSIS
+.B install
+[
+.B \-c
+] [
+.B \-m
+mode ] [
+.B \-o
+owner ] [
+.B \-g
+group ] [
+.B \-s
+] binary destination
+.SH DESCRIPTION
+.I Binary
+is moved (or copied if 
+.B \-c
+is specified) to
+.IR destination .
+If
+.I destination
+already exists,
+it is removed before
+.I binary
+is moved.
+If the destination is a directory then
+.I binary
+is moved into the
+.I destination
+directory with its original file-name.
+.PP
+The mode for
+.I Destination
+is set to 755; the
+.B \-m
+.I mode
+option may be used to specify a different mode.
+.PP
+.I Destination
+is changed to owner root; the
+.B \-o
+.I owner
+option may be used to specify a different owner.
+.PP
+.I Destination
+is changed to group staff; the
+.B \-g
+.I group
+option may be used to specify a different group.
+.PP
+If the
+.B \-s
+option is specified the binary is stripped after being installed.
+.PP
+.I Install
+refuses to move a file onto itself.
+.SH "SEE ALSO"
+chgrp(1), chmod(1), cp(1), mv(1), strip(1), chown(8)