filesystems: return ENOSYS for REQ_PEEK
[minix3.git] / commands / touch / touch.1
blob6ec2c135692a2678cfea8e80fc23b2a8f47e2d90
1 .\"     $OpenBSD: touch.1,v 1.14 2007/08/06 19:16:06 sobrado Exp $
2 .\"     $NetBSD: touch.1,v 1.8 1995/08/31 22:10:05 jtc Exp $
3 .\"
4 .\" Copyright (c) 1991, 1993
5 .\"     The Regents of the University of California.  All rights reserved.
6 .\"
7 .\" This code is derived from software contributed to Berkeley by
8 .\" the Institute of Electrical and Electronics Engineers, Inc.
9 .\"
10 .\" Redistribution and use in source and binary forms, with or without
11 .\" modification, are permitted provided that the following conditions
12 .\" are met:
13 .\" 1. Redistributions of source code must retain the above copyright
14 .\"    notice, this list of conditions and the following disclaimer.
15 .\" 2. Redistributions in binary form must reproduce the above copyright
16 .\"    notice, this list of conditions and the following disclaimer in the
17 .\"    documentation and/or other materials provided with the distribution.
18 .\" 3. Neither the name of the University nor the names of its contributors
19 .\"    may be used to endorse or promote products derived from this software
20 .\"    without specific prior written permission.
21 .\"
22 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 .\" SUCH DAMAGE.
33 .\"
34 .\"     @(#)touch.1     8.3 (Berkeley) 4/28/95
35 .\"
36 .Dd $Mdocdate: August 6 2007 $
37 .Dt TOUCH 1
38 .Os
39 .Sh NAME
40 .Nm touch
41 .Nd change file access and modification times
42 .Sh SYNOPSIS
43 .Nm touch
44 .Op Fl acm
45 .Op Fl r Ar file
46 .Op Fl t Ar [[CC]YY]MMDDhhmm[.SS]
47 .Ar
48 .Sh DESCRIPTION
49 The
50 .Nm
51 utility sets the modification and access times of files to the
52 current time of day.
53 If the file doesn't exist, it is created with default permissions.
54 .Pp
55 The options are as follows:
56 .Bl -tag -width Ds
57 .It Fl a
58 Change the access time of the file.
59 The modification time of the file is not changed unless the
60 .Fl m
61 flag is also specified.
62 .It Fl c
63 Do not create the file if it does not exist.
64 The
65 .Nm
66 utility does not treat this as an error.
67 No error messages are displayed and the exit value is not affected.
68 .It Fl m
69 Change the modification time of the file.
70 The access time of the file is not changed unless the
71 .Fl a
72 flag is also specified.
73 .It Fl r Ar file
74 Use the access and modification times from the specified file
75 instead of the current time of day.
76 .It Fl t Ar [[CC]YY]MMDDhhmm[.SS]
77 Change the access and modification times to the specified time.
78 The argument should be in the form
79 .Dq [[CC]YY]MMDDhhmm[.SS]
80 where each pair of letters represents the following:
81 .Pp
82 .Bl -tag -width Ds -compact -offset indent
83 .It Ar CC
84 The first two digits of the year (the century).
85 .It Ar YY
86 The second two digits of the year.
88 .Dq YY
89 is specified, but
90 .Dq CC
91 is not, a value for
92 .Dq YY
93 between 69 and 99 results in a
94 .Dq CC
95 value of 19.
96 Otherwise, a
97 .Dq CC
98 value of 20 is used.
99 .It Ar MM
100 The month of the year, from 1 to 12.
101 .It Ar DD
102 The day of the month, from 1 to 31.
103 .It Ar hh
104 The hour of the day, from 0 to 23.
105 .It Ar mm
106 The minute of the hour, from 0 to 59.
107 .It Ar SS
108 The second of the minute, from 0 to 61.
111 If the
112 .Dq CC
114 .Dq YY
115 letter pairs are not specified, the values default to the current
116 year.
117 If the
118 .Dq SS
119 letter pair is not specified, the value defaults to 0.
124 utility exits 0 on success or >0 if an error occurred.
125 .Sh SEE ALSO
126 .Xr utimes 2
127 .Sh STANDARDS
130 utility is compliant with the
131 .St -p1003.1-2004
132 specification.
134 The obsolescent form of
135 .Nm touch ,
136 where a time format is specified as the first argument, is supported.
137 When no
138 .Fl r
140 .Fl t
141 option is specified, there are at least two arguments, and the first
142 argument is a string of digits either eight or ten characters in length,
143 the first argument is interpreted as a time specification of the form
144 .Dq MMDDhhmm[YY] .
147 .Dq MM ,
148 .Dq DD ,
149 .Dq hh
151 .Dq mm
152 letter pairs are treated as their counterparts specified to the
153 .Fl t
154 option.
155 If the
156 .Dq YY
157 letter pair is in the range 69 to 99, the year is set from 1969 to 1999;
158 otherwise, the year is set in the 21st century.
159 .Sh HISTORY
162 utility appeared in
163 .At v7 .