This commit was manufactured by cvs2svn to create tag 'FreeBSD-release/1.0'.
[unix-history] / usr.bin / touch / touch.1
CommitLineData
15637ed4
RG
1.\" Copyright (c) 1991 Regents of the University of California.
2.\" 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. All advertising materials mentioning features or use of this software
16.\" must display the following acknowledgement:
17.\" This product includes software developed by the University of
18.\" California, Berkeley and its contributors.
19.\" 4. Neither the name of the University nor the names of its contributors
20.\" may be used to endorse or promote products derived from this software
21.\" without specific prior written permission.
22.\"
23.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33.\" SUCH DAMAGE.
34.\"
78ed81a3 35.\" @(#)touch.1 6.5 (Berkeley) 3/6/93
15637ed4 36.\"
78ed81a3 37.Dd March 6, 1993
15637ed4
RG
38.Dt TOUCH 1
39.Os
40.Sh NAME
41.Nm touch
78ed81a3 42.Nd change file access and modification times
15637ed4
RG
43.Sh SYNOPSIS
44.Nm touch
78ed81a3 45.Op Fl acfm
46.Op Fl r Ar file
47.Op Fl t [[CC]YY]MMDDhhmm[.SS]
48.Op Fl T seconds
15637ed4
RG
49.Ar file ...
50.Sh DESCRIPTION
51The
52.Nm touch
78ed81a3 53utility sets the modification and access times of files to the
54current time of day.
55If the file doesn't exist, it is created with default permissions.
15637ed4 56.Pp
78ed81a3 57The following options are available:
15637ed4 58.Bl -tag -width Ds
78ed81a3 59.It Fl a
60Change the access time of the file.
61The modification time of the file is not changed unless the
62.Fl m
63flag is also specified.
15637ed4 64.It Fl c
78ed81a3 65Do not create the file if it does not exist.
66The
67.Nm touch
68utility does not treat this as an error.
69No error messages are displayed and the exit value is not affected.
15637ed4 70.It Fl f
78ed81a3 71Attempt to force the update, even if the file permissions do not
72currently permit it.
73.It Fl m
74Change the modification time of the file.
75The access time of the file is not changed unless the
76.Fl a
77flag is also specified.
78.It Fl r
79Use the access and modifications times from the specified file
80instead of the current time of day.
81.It Fl T
82Change the access and modification times to the specified time.
83The time is seconds since the start of the epoch. (The same value returned
84by time(3).)
85.It Fl t
86Change the access and modification times to the specified time.
87The argument should be in the form
88.Dq [[CC]YY]MMDDhhmm[.SS]
89where each pair of letters represents the following:
90.Pp
91.Bl -tag -width Ds -compact -offset indent
92.It Ar CC
93The first two digits of the year (the century).
94.It Ar YY
95The second two digits of the year.
96If
97.Dq YY
98is specified, but
99.Dq CC
100is not, a value for
101.Dq YY
102between 69 and 99 results in a
103.Dq YY
104value of 19.
105Otherwise, a
106.Dq YY
107value of 20 is used.
108.It Ar MM
109The month of the year, from 1 to 12.
110.It Ar DD
111the day of the month, from 1 to 31.
112.It Ar hh
113The hour of the day, from 0 to 23.
114.It Ar mm
115The minute of the hour, from 0 to 59.
116.It Ar SS
117The second of the minute, from 0 to 61.
118.El
119.Pp
120If the
121.Dq CC
122and
123.Dq YY
124letter pairs are not specified, the values default to the current
125year.
126If the
127.Dq SS
128letter pair is not specified, the value defaults to 0.
129.El
130.Pp
131The
15637ed4 132.Nm touch
78ed81a3 133utility exits 0 on success, and >0 if an error occurs.
15637ed4 134.Sh SEE ALSO
78ed81a3 135.Xr utimes 2 ,
136.Xr time 3
137.Sh COMPATIBILITY
138The obsolescent form of
139.Nm touch ,
140where a time format is specified as the first argument, is supported.
141When no
142.Fl r
143or
144.Fl t
145option is specified, there are at least two arguments, and the first
146argument is a string of digits either eight or ten characters in length,
147the first argument is interprested as a time specification of the form
148.Dq MMDDhhmm[YY] .
149.Pp
150The
151.Dq MM ,
152.Dq DD ,
153.Dq hh
154and
155.Dq mm
156letter pairs are treated as their counterparts specified to the
157.Fl t
158option.
159If the
160.Dq YY
161letter pair is in the range 69 to 99, the year is set to 1969 to 1999,
162otherwise, the year is set in the 21st century.
15637ed4
RG
163.Sh HISTORY
164A
78ed81a3 165.Nm touch
15637ed4
RG
166command appeared in
167.At v7 .
78ed81a3 168.Sh STANDARDS
169The
170.Nm touch
171function is expected to be a superset of the
172.St -p1003.2
173specification.