4.3BSD-Reno/src/pgrm/xinstall/install.1

Compare this file to the similar file:
Show the results in this format:

.\" Copyright (c) 1987, 1990 The Regents of the University of California.
.\" All rights reserved.
.\"
.\" Redistribution and use in source and binary forms are permitted provided
.\" that: (1) source distributions retain this entire copyright notice and
.\" comment, and (2) distributions including binaries display the following
.\" acknowledgement:  ``This product includes software developed by the
.\" University of California, Berkeley and its contributors'' in the
.\" documentation or other materials provided with the distribution and in
.\" all advertising materials mentioning features or use of this software.
.\" Neither the name of the University nor the names of its contributors may
.\" 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.
.\"
.\"     @(#)install.1	6.9 (Berkeley) 7/24/90
.\"
.Dd July 24, 1990
.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
.Fl c
option is specified) to the target file or directory.
If the destination is a directory, then the
.Ar file
is moved into
.Ar directory
with its original filename.
If the target file already exists, it is overwritten if permissions
allow.
.Pp
.Tw Ds
.Tp Fl m
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
.Xr chmod  1
for a description of possible mode values.
.Tp Fl o
Specify an owner.
.Tp Fl g
Specify a group.
.Tp Fl s
.Nm Install
exec's the command
.Xr strip  1
to strip binaries so that install can be portable over a large
number of systems and binary types.
.Tp
.Pp
.Nm Install
refuses to move a file onto itself.
.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.
.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.