stdio.h defines BUFSIZ
[unix-history] / usr / src / usr.bin / xinstall / install.1
index ed3bdb3..1d8631e 100644 (file)
@@ -1,75 +1,79 @@
-.\" Copyright (c) 1987 Regents of the University of California.
+.\" Copyright (c) 1987, 1990 The Regents of the University of California.
 .\" All rights reserved.
 .\"
 .\" All rights reserved.
 .\"
-.\" Redistribution and use in source and binary forms are permitted
-.\" provided that the above copyright notice and this paragraph are
-.\" duplicated in all such forms and that any documentation,
-.\" advertising materials, and other materials related to such
-.\" distribution and use acknowledge that the software was developed
-.\" by the University of California, Berkeley.  The name of the
-.\" University may not be used to endorse or promote products derived
-.\" from this software without specific prior written permission.
-.\" THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
-.\" IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
-.\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+.\" %sccs.include.redist.man%
 .\"
 .\"
-.\"    @(#)install.1   6.7 (Berkeley) %G%
+.\"     @(#)install.1  6.9 (Berkeley) %G%
 .\"
 .\"
-.TH INSTALL 1 ""
-.UC 5
-.SH NAME
-install \- install binaries
-.SH SYNOPSIS
-.B install
-[
-.B \-cs
-] [
-.B \-m
-mode ] [
-.B \-o
-owner ] [
-.B \-g
-group ] file1 file2; or file1 ... fileN directory
-.SH DESCRIPTION
+.Dd 
+.Dt INSTALL 1
+.Os BSD 4.2
+.Sh NAME
+.Nm install
+.Nd install binaries
+.Sh SYNOPSIS
+.Nm install
+.Op Fl cs
+.Op.Fl m Ar mode
+.Op Fl o Ar owner
+.Op Fl g Ar group
+.Ar file1 file2
+.Nm install
+.Op Fl cs
+.Op.Fl m Ar mode
+.Op Fl o Ar owner
+.Op Fl g Ar group
+.Ar file1
+\&...
+.Ar fileN directory
+.Sh DESCRIPTION
 The file(s) are moved (or copied if the
 The file(s) are moved (or copied if the
-.I -c
+.Fl c
 option is specified) to the target file or directory.
 If the destination is a directory, then the
 option is specified) to the target file or directory.
 If the destination is a directory, then the
-.I file
+.Ar file
 is moved into
 is moved into
-.I directory
+.Ar directory
 with its original filename.
 If the target file already exists, it is overwritten if permissions
 allow.
 with its original filename.
 If the target file already exists, it is overwritten if permissions
 allow.
-.PP
-The mode is set to 755; the
-.I -m
+.Pp
+.Tw Ds
+.Tp Fl m
 option may be used to specify an alternate mode.
 option may be used to specify an alternate mode.
+The default mode is set to 755.
 The specified mode may be either an octal or symbolic value; see
 The specified mode may be either an octal or symbolic value; see
-.IR chmod (1)
+.Xr chmod  1
 for a description of possible mode values.
 for a description of possible mode values.
-.PP
-The
-.I -o
-and
-.I -g
-options may be used to specify an owner and/or group, respectively.
-.PP
-The
-.I -s
-option causes the file to be stripped.
-.I Install
+.Tp Fl o
+Specify an owner.
+.Tp Fl g
+Specify a group.
+.Tp Fl s
+.Nm Install
 exec's the command
 exec's the command
-.IR strip (1)
+.Xr strip  1
 to strip binaries so that install can be portable over a large
 number of systems and binary types.
 to strip binaries so that install can be portable over a large
 number of systems and binary types.
-.PP
-.I Install
+.Tp
+.Pp
+.Nm Install
 refuses to move a file onto itself.
 refuses to move a file onto itself.
-.PP
-Installing ``/dev/null'' creates an empty file.
-.SH "RETURN VALUE"
+.Pp
+Installing
+.Pa /dev/null
+creates an empty file.
+.Pp
 Upon successful completion a value of 0 is returned.
 Otherwise, a value of 1 is returned.
 Upon successful completion a value of 0 is returned.
 Otherwise, a value of 1 is returned.
-.SH "SEE ALSO"
-chgrp(1), chmod(1), cp(1), mv(1), strip(1), a.out(5), chown(8)
+.Sh SEE ALSO
+.Xr chgrp 1 ,
+.Xr chmod 1 ,
+.Xr cp 1 ,
+.Xr mv 1 ,
+.Xr strip 1 ,
+.Xr a.out 5 ,
+.Xr chown 8
+.Sh HISTORY
+.Nm Install
+appeared in 4.2 BSD.