Penguin
Annotated edit history of install(1) version 2, including all changes. View license author blame.
Rev Author # Line
1 perry 1 INSTALL
2 !!!INSTALL
3 NAME
4 SYNOPSIS
5 DESCRIPTION
6 AUTHOR
7 REPORTING BUGS
8 COPYRIGHT
9 SEE ALSO
10 ----
11 !!NAME
12
13
14 install - copy files and set attributes
15 !!SYNOPSIS
16
17
18 __install__ [[''OPTION'']... ''SOURCE DEST (1st
19 format)''__
20 install__ [[''OPTION'']... ''SOURCE''... ''DIRECTORY
21 (2nd format)''__
22 install__ ''-d'' [[''OPTION'']... ''DIRECTORY''...
23 ''(3rd format)''
24 !!DESCRIPTION
25
26
27 In the first two formats, copy SOURCE to DEST or multiple
28 SOURCE(s) to the existing DIRECTORY, while setting
29 permission modes and owner/group. In the third format,
30 create all components of the given
31 DIRECTORY(ies).
32
33
34 __--backup__[[=''CONTROL''] make a backup of each
35 existing destination file
36
37
38 __-b__
39
40
41 like __--backup__ but does not accept an
42 argument
43
44
45 __-c__
46
47
48 (ignored)
49
50
51 __-d__, __--directory__
52
53
54 treat all arguments as directory names; create all
55 components of the specified directories
56
57
58 __-D__
59
60
61 create all leading components of DEST except the last, then
62 copy SOURCE to DEST; useful in the 1st format
63
64
65 __-g__, __--group__=''GROUP''
66
67
68 set group ownership, instead of process' current
69 group
70
71
72 __-m__, __--mode__=''MODE''
73
74
75 set permission mode (as in chmod), instead of
76 rwxr-xr-x
77
78
79 __-o__, __--owner__=''OWNER''
80
81
82 set ownership (super-user only)
83
84
85 __-p__, __--preserve-timestamps__
86
87
88 apply access/modification times of SOURCE files to
89 corresponding destination files
90
91
92 __-s__, __--strip__
93
94
95 strip symbol tables, only for 1st and 2nd
96 formats
97
98
99 __-S__, __--suffix__=''SUFFIX'' override the usual
100 backup suffix
101
102
103 __-v__, __--verbose__
104
105
106 print the name of each directory as it is
107 created
108
109
110 __--help__
111
112
113 display this help and exit
114
115
116 __--version__
117
118
119 output version information and exit
120
121
122 The backup suffix is `~', unless set with __--suffix__ or
123 SIMPLE_BACKUP_SUFFIX. The version control method may be
124 selected via the __--backup__ option or through the
125 VERSION_CONTROL environment variable. Here are the
126 values:
127
128
129 none, off
130
131
132 never make backups (even if __--backup__ is
133 given)
134
135
136 numbered, t
137
138
139 make numbered backups
140
141
142 existing, nil
143
144
145 numbered if numbered backups exist, simple
146 otherwise
147
148
149 simple, never
150
151
152 always make simple backups
153 !!AUTHOR
154
155
2 perry 156 Written by David !MacKenzie.
1 perry 157 !!REPORTING BUGS
158
159
160 Report bugs to
161 !!COPYRIGHT
162
163
164 Copyright 2001 Free Software Foundation, Inc.
165 This is free software; see the source for copying
166 conditions. There is NO warranty; not even for
167 MERCHANTABILITY or FITNESS FOR A PARTICULAR
168 PURPOSE.
169 !!SEE ALSO
170
171
172 The full documentation for __install__ is maintained as a
173 Texinfo manual. If the __info__ and __install__
174 programs are properly installed at your site, the
175 command
176
177
178 __info install__
179
180
181 should give you access to the complete manual.
182 ----
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.