]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/touch/touch.1
contrib/kyua: Merge vendor import
[FreeBSD/FreeBSD.git] / usr.bin / touch / touch.1
1 .\" Copyright (c) 1991, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" This code is derived from software contributed to Berkeley by
5 .\" the Institute of Electrical and Electronics Engineers, Inc.
6 .\"
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
9 .\" are met:
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\"    notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\"    notice, this list of conditions and the following disclaimer in the
14 .\"    documentation and/or other materials provided with the distribution.
15 .\" 3. Neither the name of the University nor the names of its contributors
16 .\"    may be used to endorse or promote products derived from this software
17 .\"    without specific prior written permission.
18 .\"
19 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 .\" SUCH DAMAGE.
30 .\"
31 .Dd June 1, 2018
32 .Dt TOUCH 1
33 .Os
34 .Sh NAME
35 .Nm touch
36 .Nd change file access and modification times
37 .Sh SYNOPSIS
38 .Nm
39 .Op Fl A Ar [-][[hh]mm]SS
40 .Op Fl achm
41 .Op Fl r Ar file
42 .Op Fl t Ar [[CC]YY]MMDDhhmm[.SS]
43 .Op Fl d Ar YYYY-MM-DDThh:mm:SS[.frac][tz]
44 .Ar
45 .Sh DESCRIPTION
46 The
47 .Nm
48 utility sets the modification and access times of files.
49 If any file does not exist, it is created with default permissions.
50 .Pp
51 By default,
52 .Nm
53 changes both modification and access times.
54 The
55 .Fl a
56 and
57 .Fl m
58 flags may be used to select the access time or the modification time
59 individually.
60 Selecting both is equivalent to the default.
61 By default, the timestamps are set to the current time.
62 The
63 .Fl d
64 and
65 .Fl t
66 flags explicitly specify a different time, and the
67 .Fl r
68 flag specifies to set the times those of the specified file.
69 The
70 .Fl A
71 flag adjusts the values by a specified amount.
72 .Pp
73 The following options are available:
74 .Bl -tag -width Ds
75 .It Fl A
76 Adjust the access and modification time stamps for the file by the
77 specified value.
78 This flag is intended for use in modifying files with incorrectly set
79 time stamps.
80 .Pp
81 The argument is of the form
82 .Dq [-][[hh]mm]SS
83 where each pair of letters represents the following:
84 .Pp
85 .Bl -tag -width Ds -compact -offset indent
86 .It Ar -
87 Make the adjustment negative: the new time stamp is set to be before
88 the old one.
89 .It Ar hh
90 The number of hours, from 00 to 99.
91 .It Ar mm
92 The number of minutes, from 00 to 59.
93 .It Ar SS
94 The number of seconds, from 00 to 59.
95 .El
96 .Pp
97 The
98 .Fl A
99 flag implies the
100 .Fl c
101 flag: if any file specified does not exist, it will be silently ignored.
102 .It Fl a
103 Change the access time of the file.
104 The modification time of the file is not changed unless the
105 .Fl m
106 flag is also specified.
107 .It Fl c
108 Do not create the file if it does not exist.
109 The
110 .Nm
111 utility does not treat this as an error.
112 No error messages are displayed and the exit value is not affected.
113 .It Fl d
114 Change the access and modification times to the specified date time instead
115 of the current time of day.
116 The argument is of the form
117 .Dq YYYY-MM-DDThh:mm:SS[.frac][tz]
118 where the letters represent the following:
119 .Bl -tag -width Ds -compact -offset indent
120 .It Ar YYYY
121 At least four decimal digits representing the year.
122 .It Ar MM , Ar DD , Ar hh , Ar mm , Ar SS
123 As with
124 .Fl t
125 time.
126 .It Ar T
127 The letter
128 .Li T
129 or a space is the time designator.
130 .It Ar .frac
131 An optional fraction, consisting of a period or a comma followed by one or
132 more digits.
133 The number of significant digits depends on the kernel configuration and the
134 filesystem, and may be zero.
135 .It Ar tz
136 An optional letter
137 .Li Z
138 indicating the time is in
139 .Tn UTC .
140 Otherwise, the time is assumed to be in local time.
141 Local time is affected by the value of the
142 .Ev TZ
143 environment variable.
144 .El
145 .It Fl h
146 If the file is a symbolic link, change the times of the link
147 itself rather than the file that the link points to.
148 Note that
149 .Fl h
150 implies
151 .Fl c
152 and thus will not create any new files.
153 .It Fl m
154 Change the modification time of the file.
155 The access time of the file is not changed unless the
156 .Fl a
157 flag is also specified.
158 .It Fl r
159 Use the access and modifications times from the specified file
160 instead of the current time of day.
161 .It Fl t
162 Change the access and modification times to the specified time instead
163 of the current time of day.
164 The argument is of the form
165 .Dq [[CC]YY]MMDDhhmm[.SS]
166 where each pair of letters represents the following:
167 .Pp
168 .Bl -tag -width Ds -compact -offset indent
169 .It Ar CC
170 The first two digits of the year (the century).
171 .It Ar YY
172 The second two digits of the year.
173 If
174 .Dq YY
175 is specified, but
176 .Dq CC
177 is not, a value for
178 .Dq YY
179 between 69 and 99 results in a
180 .Dq CC
181 value of 19.
182 Otherwise, a
183 .Dq CC
184 value of 20 is used.
185 .It Ar MM
186 The month of the year, from 01 to 12.
187 .It Ar DD
188 the day of the month, from 01 to 31.
189 .It Ar hh
190 The hour of the day, from 00 to 23.
191 .It Ar mm
192 The minute of the hour, from 00 to 59.
193 .It Ar SS
194 The second of the minute, from 00 to 60.
195 .El
196 .Pp
197 If the
198 .Dq CC
199 and
200 .Dq YY
201 letter pairs are not specified, the values default to the current
202 year.
203 If the
204 .Dq SS
205 letter pair is not specified, the value defaults to 0.
206 .El
207 .Sh EXIT STATUS
208 .Ex -std
209 .Sh COMPATIBILITY
210 The obsolescent form of
211 .Nm ,
212 where a time format is specified as the first argument, is supported.
213 When no
214 .Fl r
215 or
216 .Fl t
217 option is specified, there are at least two arguments, and the first
218 argument is a string of digits either eight or ten characters in length,
219 the first argument is interpreted as a time specification of the form
220 .Dq MMDDhhmm[YY] .
221 .Pp
222 The
223 .Dq MM ,
224 .Dq DD ,
225 .Dq hh
226 and
227 .Dq mm
228 letter pairs are treated as their counterparts specified to the
229 .Fl t
230 option.
231 If the
232 .Dq YY
233 letter pair is in the range 39 to 99, the year is set to 1939 to 1999,
234 otherwise, the year is set in the 21st century.
235 .Sh SEE ALSO
236 .Xr utimensat 2
237 .Sh STANDARDS
238 The
239 .Nm
240 utility is expected to be a superset of the
241 .St -p1003.2
242 specification.
243 .Sh HISTORY
244 A
245 .Nm
246 utility appeared in
247 .At v7 .