BSD 4_3_Net_2 release
[unix-history] / usr / src / usr.bin / xinstall / install.1
CommitLineData
d9d7a9f0 1.\" Copyright (c) 1987, 1990 The Regents of the University of California.
033e16ea 2.\" All rights reserved.
db222088 3.\"
c0567266
KB
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\" notice, this list of conditions and the following disclaimer.
9.\" 2. Redistributions in binary form must reproduce the above copyright
10.\" notice, this list of conditions and the following disclaimer in the
11.\" documentation and/or other materials provided with the distribution.
12.\" 3. All advertising materials mentioning features or use of this software
13.\" must display the following acknowledgement:
14.\" This product includes software developed by the University of
15.\" California, Berkeley and its contributors.
16.\" 4. Neither the name of the University nor the names of its contributors
17.\" may be used to endorse or promote products derived from this software
18.\" without specific prior written permission.
19.\"
20.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30.\" SUCH DAMAGE.
db222088 31.\"
af359dea
C
32.\" @(#)install.1 6.11 (Berkeley) 5/31/91
33.\"
34.Dd May 31, 1991
d9d7a9f0
CL
35.Dt INSTALL 1
36.Os BSD 4.2
37.Sh NAME
38.Nm install
39.Nd install binaries
40.Sh SYNOPSIS
41.Nm install
42.Op Fl cs
af359dea 43.Op Fl m Ar mode
d9d7a9f0
CL
44.Op Fl o Ar owner
45.Op Fl g Ar group
5325ced3
CL
46.Ar file1 file2
47.Nm install
48.Op Fl cs
af359dea 49.Op Fl m Ar mode
5325ced3
CL
50.Op Fl o Ar owner
51.Op Fl g Ar group
d9d7a9f0
CL
52.Ar file1
53\&...
54.Ar fileN directory
55.Sh DESCRIPTION
fe1faba3 56The file(s) are moved (or copied if the
d9d7a9f0 57.Fl c
fe1faba3
KB
58option is specified) to the target file or directory.
59If the destination is a directory, then the
d9d7a9f0 60.Ar file
fe1faba3 61is moved into
d9d7a9f0 62.Ar directory
fe1faba3
KB
63with its original filename.
64If the target file already exists, it is overwritten if permissions
65allow.
d9d7a9f0 66.Pp
af359dea
C
67.Bl -tag -width Ds
68.It Fl m
69Specify an alternate mode.
d9d7a9f0 70The default mode is set to 755.
915c21b8 71The specified mode may be either an octal or symbolic value; see
d9d7a9f0 72.Xr chmod 1
915c21b8 73for a description of possible mode values.
af359dea 74.It Fl o
d9d7a9f0 75Specify an owner.
af359dea 76.It Fl g
d9d7a9f0 77Specify a group.
af359dea 78.It Fl s
d9d7a9f0 79.Nm Install
fe1faba3 80exec's the command
d9d7a9f0 81.Xr strip 1
fe1faba3
KB
82to strip binaries so that install can be portable over a large
83number of systems and binary types.
af359dea 84.El
d9d7a9f0
CL
85.Pp
86.Nm Install
fe1faba3 87refuses to move a file onto itself.
d9d7a9f0
CL
88.Pp
89Installing
5325ced3 90.Pa /dev/null
d9d7a9f0
CL
91creates an empty file.
92.Pp
fe1faba3
KB
93Upon successful completion a value of 0 is returned.
94Otherwise, a value of 1 is returned.
d9d7a9f0
CL
95.Sh SEE ALSO
96.Xr chgrp 1 ,
97.Xr chmod 1 ,
98.Xr cp 1 ,
99.Xr mv 1 ,
100.Xr strip 1 ,
101.Xr a.out 5 ,
102.Xr chown 8
103.Sh HISTORY
af359dea
C
104The
105.Nm install
106utility appeared in
107.Bx 4.2 .