xref: /freebsd/bin/date/date.1 (revision 99e8005137088aafb1350e23b113d69b01b0820f)
1.\" Copyright (c) 1980, 1990, 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. 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.\"
35.\"     @(#)date.1	8.3 (Berkeley) 4/28/95
36.\" $FreeBSD$
37.\"
38.Dd November 17, 1993
39.Dt DATE 1
40.Os
41.Sh NAME
42.Nm date
43.Nd display or set date and time
44.Sh SYNOPSIS
45.Nm
46.Op Fl jnu
47.Op Fl d Ar dst
48.Op Fl r Ar seconds
49.Op Fl t Ar minutes_west
50.Oo
51.Fl v
52.Sm off
53.Op Cm + | - Xo
54.Ar val Op Ar ymwdHMS
55.Xc
56.Sm on
57.Oc
58.Ar ...\&
59.Oo
60.Fl f
61.Ar fmt date |
62.Sm off
63.Oo Oo Oo Oo Oo
64.Ar cc Oc
65.Ar yy Oc
66.Ar mm Oc
67.Ar dd Oc
68.Ar HH Oc
69.Ar MM Op Ar .ss
70.Sm on
71.Oc
72.Op Cm + Ns Ar format
73.Sh DESCRIPTION
74When invoked without arguments, the
75.Nm
76utility displays the current date and time.
77Otherwise, depending on the options specified,
78.Nm
79will set the date and time or print it in a user-defined way.
80.Pp
81Only the superuser may set the date,
82and if the system securelevel (see
83.Xr securelevel 8 )
84is greater than 1,
85the time may not be changed by more than 1 second.
86.Pp
87The options are as follows:
88.Bl -tag -width Ds
89.It Fl d Ar dst
90Set the kernel's value for daylight saving time.
91If
92.Ar dst
93is non-zero, future calls
94to
95.Xr gettimeofday 2
96will return a non-zero for
97.Fa tz_dsttime  .
98.It Fl f
99Use
100.Ar fmt
101as the format string to parse the
102.Ar date
103provided rather than using the default
104.Sm off
105.Oo Oo Oo Oo Oo
106.Ar cc Oc
107.Ar yy Oc
108.Ar mm Oc
109.Ar dd Oc
110.Ar HH
111.Oc Ar MM Op Ar .ss
112.Sm on
113format.
114Parsing is done using
115.Xr strptime 3 .
116.It Fl j
117Do not try to set the date.
118This allows you to use the
119.Fl f
120flag in addition to the
121.Cm +
122option to convert one date format to another.
123.It Fl n
124By default, if the
125.Xr timed 8
126daemon is running,
127.Nm
128sets the time on all of the machines in the local group.
129The
130.Fl n
131option suppresses this behavior and causes the time to be set only on the
132current machine.
133.It Fl r Ar seconds
134Print the date and time represented by
135.Ar seconds ,
136where
137.Ar seconds
138is the number of seconds since the Epoch
139(00:00:00 UTC, January 1, 1970;
140see
141.Xr time 3 ) ,
142and can be specified in decimal, octal, or hex.
143.It Fl t Ar minutes_west
144Set the system's value for minutes west of
145.Tn GMT .
146.Ar minutes_west
147specifies the number of minutes returned in
148.Fa tz_minuteswest
149by future calls to
150.Xr gettimeofday 2 .
151.It Fl u
152Display or set the date in
153.Tn UTC
154(Coordinated Universal) time.
155.It Fl v
156Adjust (i.e., take the current date and display the result of the
157adjustment; not actually set the date) the second, minute, hour, month
158day, week day, month or year according to
159.Ar val .
160If
161.Ar val
162is preceded with a plus or minus sign,
163the date is adjusted forwards or backwards according to the remaining string,
164otherwise the relevant part of the date is set.
165The date can be adjusted as many times as required using these flags.
166Flags are processed in the order given.
167.Pp
168When setting values
169.Pq rather than adjusting them ,
170seconds are in the range 0-59, minutes are in the range 0-59, hours are
171in the range 1-12, month days are in the range 1-31, week days are in the
172range 0-6
173.Pq Sun-Sat ,
174months are in the range 1-12
175.Pq Jan-Dec
176and years are in the range 80-38 or 1980-2038.
177.Pp
178If
179.Ar val
180is numeric, one of either
181.Ar y ,
182.Ar m ,
183.Ar w ,
184.Ar d ,
185.Ar H ,
186.Ar M
187or
188.Ar S
189must be used to specify which part of the date is to be adjusted.
190.Pp
191The week day or month may be specified using a name rather than a
192number.
193If a name is used with the plus
194.Pq or minus
195sign, the date will be put forwards
196.Pq or backwards
197to the next
198.Pq previous
199date that matches the given week day or month.
200This will not adjust the date,
201if the given week day or month is the same as the current one.
202.Pp
203When a date is adjusted to a specific value or in units greater than hours,
204daylight savings time considerations are ignored.
205Adjustments in units of hours or less honor daylight saving time.
206So, assuming the current date is March 26, 0:30 and that the DST adjustment
207means that the clock goes forward at 01:00 to 02:00, using
208.Fl v No +1H
209will adjust the date to March 26, 2:30.
210Likewise, if the date is October 29, 0:30 and the DST adjustment means that
211the clock goes back at 02:00 to 01:00, using
212.Fl v No +3H
213will be necessary to reach October 29, 2:30.
214.Pp
215When the date is adjusted to a specific value that doesn't actually exist
216.Po
217for example March 26, 1:30 BST 2000 in the Europe/London timezone
218.Pc ,
219the date will be silently adjusted forwards in units of one hour until it
220reaches a valid time.
221When the date is adjusted to a specific value that occurs twice
222.Pq for example October 29, 1:30 2000 ,
223the resulting timezone will be set so that the date matches the earlier of
224the two times.
225.Pp
226Refer to the examples below for further details.
227.El
228.Pp
229An operand with a leading plus
230.Pq Sq +
231sign signals a user-defined format string
232which specifies the format in which to display the date and time.
233The format string may contain any of the conversion specifications
234described in the
235.Xr strftime 3
236manual page, as well as any arbitrary text.
237A newline
238.Pq Ql \en
239character is always output after the characters specified by
240the format string.
241The format string for the default display is
242.Dq +%+ .
243.Pp
244If an operand does not have a leading plus sign, it is interpreted as
245a value for setting the system's notion of the current date and time.
246The canonical representation for setting the date and time is:
247.Pp
248.Bl -tag -width Ds -compact -offset indent
249.It Ar cc
250Century
251.Pq either 19 or 20
252prepended to the abbreviated year.
253.It Ar yy
254Year in abbreviated form
255.Pq e.g. 89 for 1989, 06 for 2006 .
256.It Ar mm
257Numeric month, a number from 1 to 12.
258.It Ar dd
259Day, a number from 1 to 31.
260.It Ar HH
261Hour, a number from 0 to 23.
262.It Ar MM
263Minutes, a number from 0 to 59.
264.It Ar ss
265Seconds, a number from 0 to 61
266.Pq 59 plus a maximum of two leap seconds .
267.El
268.Pp
269Everything but the minutes is optional.
270.Pp
271Time changes for Daylight Saving Time, standard time, leap seconds,
272and leap years are handled automatically.
273.Sh EXAMPLES
274The command:
275.Bd -literal -offset indent
276date "+DATE: %Y-%m-%d%nTIME: %H:%M:%S"
277.Ed
278.Pp
279will display:
280.Bd -literal -offset indent
281DATE: 1987-11-21
282TIME: 13:36:16
283.Ed
284.Pp
285In the Europe/London timezone, the command:
286.Bd -literal -offset indent
287date -v1m -v+1y
288.Ed
289.Pp
290will display:
291.Bd -literal -offset indent
292Sun Jan  4 04:15:24 GMT 1998
293.Ed
294.Pp
295where it is currently Mon Aug  4 04:15:24 BST 1997.
296.Pp
297The command:
298.Bd -literal -offset indent
299date -v1d -v3m -v0y -v-1d
300.Ed
301.Pp
302will display the last day of February in the year 2000:
303.Bd -literal -offset indent
304Tue Feb 29 03:18:00 GMT 2000
305.Ed
306.Pp
307The command:
308.Bd -literal -offset indent
309date -v1d -v+1m -v-1d -v-fri
310.Ed
311.Pp
312will display the last Friday of the month:
313.Bd -literal -offset indent
314Fri Aug 29 04:31:11 BST 1997
315.Ed
316.Pp
317where it is currently Mon Aug  4 04:31:11 BST 1997.
318.Pp
319The command:
320.Bd -literal -offset indent
321date 8506131627
322.Ed
323.Pp
324sets the date to
325.Dq Li "June 13, 1985, 4:27 PM" .
326.Pp
327The command:
328.Bd -literal -offset indent
329date 1432
330.Ed
331.Pp
332sets the time to
333.Li "2:32 PM" ,
334without modifying the date.
335.Sh ENVIRONMENT
336The following environment variables affect the execution of
337.Nm :
338.Bl -tag -width Ds
339.It Ev TZ
340The timezone to use when displaying dates.
341The normal format is a pathname relative to
342.Pa /usr/share/zoneinfo .
343For example, the command
344.Dq TZ=America/Los_Angeles date
345displays the current time in California.
346See
347.Xr environ 7
348for more information.
349.El
350.Sh FILES
351.Bl -tag -width /var/log/messages -compact
352.It Pa /var/log/wtmp
353record of date resets and time changes
354.It Pa /var/log/messages
355record of the user setting the time
356.El
357.Sh SEE ALSO
358.Xr gettimeofday 2 ,
359.Xr strftime 3 ,
360.Xr strptime 3 ,
361.Xr utmp 5 ,
362.Xr timed 8
363.Rs
364.%T "TSP: The Time Synchronization Protocol for UNIX 4.3BSD"
365.%A R. Gusella
366.%A S. Zatti
367.Re
368.Sh DIAGNOSTICS
369The
370.Nm
371utility exits 0 on success, 1 if unable to set the date, and 2
372if able to set the local date, but unable to set it globally.
373.Pp
374Occasionally, when
375.Xr timed 8
376synchronizes the time on many hosts, the setting of a new time value may
377require more than a few seconds.
378On these occasions,
379.Nm
380prints:
381.Ql Network time being set .
382The message
383.Ql Communication error with timed
384occurs when the communication
385between
386.Nm
387and
388.Xr timed 8
389fails.
390.Sh STANDARDS
391The
392.Nm
393utility is expected to be compatible with
394.St -p1003.2 .
395.Sh HISTORY
396A
397.Nm
398command appeared in
399.At v1 .
400