xref: /freebsd/bin/date/date.1 (revision eb69d1f144a6fcc765d1b9d44a5ae8082353e70b)
1.\"-
2.\" Copyright (c) 1980, 1990, 1993
3.\"	The Regents of the University of California.  All rights reserved.
4.\"
5.\" This code is derived from software contributed to Berkeley by
6.\" the Institute of Electrical and Electronics Engineers, Inc.
7.\"
8.\" Redistribution and use in source and binary forms, with or without
9.\" modification, are permitted provided that the following conditions
10.\" are met:
11.\" 1. Redistributions of source code must retain the above copyright
12.\"    notice, this list of conditions and the following disclaimer.
13.\" 2. Redistributions in binary form must reproduce the above copyright
14.\"    notice, this list of conditions and the following disclaimer in the
15.\"    documentation and/or other materials provided with the distribution.
16.\" 3. Neither the name of the University nor the names of its contributors
17.\"    may be used to endorse or promote products derived from this software
18.\"    without specific prior written permission.
19.\"
20.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30.\" SUCH DAMAGE.
31.\"
32.\"     @(#)date.1	8.3 (Berkeley) 4/28/95
33.\" $FreeBSD$
34.\"
35.Dd May 7, 2015
36.Dt DATE 1
37.Os
38.Sh NAME
39.Nm date
40.Nd display or set date and time
41.Sh SYNOPSIS
42.Nm
43.Op Fl jRu
44.Op Fl r Ar seconds | Ar filename
45.Oo
46.Fl v
47.Sm off
48.Op Cm + | -
49.Ar val Op Ar ymwdHMS
50.Sm on
51.Oc
52.Ar ...
53.Op Cm + Ns Ar output_fmt
54.Nm
55.Op Fl jnu
56.Sm off
57.Op Oo Oo Oo Oo Ar cc Oc Ar yy Oc Ar mm Oc Ar dd Oc Ar HH
58.Ar MM Op Ar .ss
59.Sm on
60.Nm
61.Op Fl jnRu
62.Fl f Ar input_fmt new_date
63.Op Cm + Ns Ar output_fmt
64.Nm
65.Op Fl d Ar dst
66.Op Fl t Ar minutes_west
67.Sh DESCRIPTION
68When invoked without arguments, the
69.Nm
70utility displays the current date and time.
71Otherwise, depending on the options specified,
72.Nm
73will set the date and time or print it in a user-defined way.
74.Pp
75The
76.Nm
77utility displays the date and time read from the kernel clock.
78When used to set the date and time,
79both the kernel clock and the hardware clock are updated.
80.Pp
81Only the superuser may set the date,
82and if the system securelevel (see
83.Xr securelevel 7 )
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 input_fmt
101as the format string to parse the
102.Ar new_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
134Use RFC 2822 date and time output format.
135This is equivalent to using
136.Dq Li %a, %d %b %Y \&%T %z
137as
138.Ar output_fmt
139while
140.Ev LC_TIME
141is set to the
142.Dq C
143locale .
144.It Fl r Ar seconds
145Print the date and time represented by
146.Ar seconds ,
147where
148.Ar seconds
149is the number of seconds since the Epoch
150(00:00:00 UTC, January 1, 1970;
151see
152.Xr time 3 ) ,
153and can be specified in decimal, octal, or hex.
154.It Fl r Ar filename
155Print the date and time of the last modification of
156.Ar filename .
157.It Fl t Ar minutes_west
158Set the system's value for minutes west of
159.Tn GMT .
160.Ar minutes_west
161specifies the number of minutes returned in
162.Fa tz_minuteswest
163by future calls to
164.Xr gettimeofday 2 .
165.It Fl u
166Display or set the date in
167.Tn UTC
168(Coordinated Universal) time.
169.It Fl v
170Adjust (i.e., take the current date and display the result of the
171adjustment; not actually set the date) the second, minute, hour, month
172day, week day, month or year according to
173.Ar val .
174If
175.Ar val
176is preceded with a plus or minus sign,
177the date is adjusted forwards or backwards according to the remaining string,
178otherwise the relevant part of the date is set.
179The date can be adjusted as many times as required using these flags.
180Flags are processed in the order given.
181.Pp
182When setting values
183(rather than adjusting them),
184seconds are in the range 0-59, minutes are in the range 0-59, hours are
185in the range 0-23, month days are in the range 1-31, week days are in the
186range 0-6 (Sun-Sat),
187months are in the range 1-12 (Jan-Dec)
188and years are in the range 80-38 or 1980-2038.
189.Pp
190If
191.Ar val
192is numeric, one of either
193.Ar y ,
194.Ar m ,
195.Ar w ,
196.Ar d ,
197.Ar H ,
198.Ar M
199or
200.Ar S
201must be used to specify which part of the date is to be adjusted.
202.Pp
203The week day or month may be specified using a name rather than a
204number.
205If a name is used with the plus
206(or minus)
207sign, the date will be put forwards
208(or backwards)
209to the next
210(previous)
211date that matches the given week day or month.
212This will not adjust the date,
213if the given week day or month is the same as the current one.
214.Pp
215When a date is adjusted to a specific value or in units greater than hours,
216daylight savings time considerations are ignored.
217Adjustments in units of hours or less honor daylight saving time.
218So, assuming the current date is March 26, 0:30 and that the DST adjustment
219means that the clock goes forward at 01:00 to 02:00, using
220.Fl v No +1H
221will adjust the date to March 26, 2:30.
222Likewise, if the date is October 29, 0:30 and the DST adjustment means that
223the clock goes back at 02:00 to 01:00, using
224.Fl v No +3H
225will be necessary to reach October 29, 2:30.
226.Pp
227When the date is adjusted to a specific value that does not actually exist
228(for example March 26, 1:30 BST 2000 in the Europe/London timezone),
229the date will be silently adjusted forwards in units of one hour until it
230reaches a valid time.
231When the date is adjusted to a specific value that occurs twice
232(for example October 29, 1:30 2000),
233the resulting timezone will be set so that the date matches the earlier of
234the two times.
235.Pp
236It is not possible to adjust a date to an invalid absolute day, so using
237the switches
238.Fl v No 31d Fl v No 12m
239will simply fail five months of the year.
240It is therefore usual to set the month before setting the day; using
241.Fl v No 12m Fl v No 31d
242always works.
243.Pp
244Adjusting the date by months is inherently ambiguous because
245a month is a unit of variable length depending on the current date.
246This kind of date adjustment is applied in the most intuitive way.
247First of all,
248.Nm
249tries to preserve the day of the month.
250If it is impossible because the target month is shorter than the present one,
251the last day of the target month will be the result.
252For example, using
253.Fl v No +1m
254on May 31 will adjust the date to June 30, while using the same option
255on January 30 will result in the date adjusted to the last day of February.
256This approach is also believed to make the most sense for shell scripting.
257Nevertheless, be aware that going forth and back by the same number of
258months may take you to a different date.
259.Pp
260Refer to the examples below for further details.
261.El
262.Pp
263An operand with a leading plus
264.Pq Sq +
265sign signals a user-defined format string
266which specifies the format in which to display the date and time.
267The format string may contain any of the conversion specifications
268described in the
269.Xr strftime 3
270manual page, as well as any arbitrary text.
271A newline
272.Pq Ql \en
273character is always output after the characters specified by
274the format string.
275The format string for the default display is
276.Dq +%+ .
277.Pp
278If an operand does not have a leading plus sign, it is interpreted as
279a value for setting the system's notion of the current date and time.
280The canonical representation for setting the date and time is:
281.Pp
282.Bl -tag -width Ds -compact -offset indent
283.It Ar cc
284Century
285(either 19 or 20)
286prepended to the abbreviated year.
287.It Ar yy
288Year in abbreviated form
289(e.g., 89 for 1989, 06 for 2006).
290.It Ar mm
291Numeric month, a number from 1 to 12.
292.It Ar dd
293Day, a number from 1 to 31.
294.It Ar HH
295Hour, a number from 0 to 23.
296.It Ar MM
297Minutes, a number from 0 to 59.
298.It Ar ss
299Seconds, a number from 0 to 61
300(59 plus a maximum of two leap seconds).
301.El
302.Pp
303Everything but the minutes is optional.
304.Pp
305Time changes for Daylight Saving Time, standard time, leap seconds,
306and leap years are handled automatically.
307.Sh ENVIRONMENT
308The following environment variables affect the execution of
309.Nm :
310.Bl -tag -width Ds
311.It Ev TZ
312The timezone to use when displaying dates.
313The normal format is a pathname relative to
314.Pa /usr/share/zoneinfo .
315For example, the command
316.Dq TZ=America/Los_Angeles date
317displays the current time in California.
318See
319.Xr environ 7
320for more information.
321.El
322.Sh FILES
323.Bl -tag -width /var/log/messages -compact
324.It Pa /var/log/utx.log
325record of date resets and time changes
326.It Pa /var/log/messages
327record of the user setting the time
328.El
329.Sh EXIT STATUS
330The
331.Nm
332utility exits 0 on success, 1 if unable to set the date, and 2
333if able to set the local date, but unable to set it globally.
334.Sh EXAMPLES
335The command:
336.Pp
337.Dl "date ""+DATE: %Y-%m-%d%nTIME: %H:%M:%S"""
338.Pp
339will display:
340.Bd -literal -offset indent
341DATE: 1987-11-21
342TIME: 13:36:16
343.Ed
344.Pp
345In the Europe/London timezone, the command:
346.Pp
347.Dl "date -v1m -v+1y"
348.Pp
349will display:
350.Pp
351.Dl "Sun Jan  4 04:15:24 GMT 1998"
352.Pp
353where it is currently
354.Li "Mon Aug  4 04:15:24 BST 1997" .
355.Pp
356The command:
357.Pp
358.Dl "date -v1d -v3m -v0y -v-1d"
359.Pp
360will display the last day of February in the year 2000:
361.Pp
362.Dl "Tue Feb 29 03:18:00 GMT 2000"
363.Pp
364So will the command:
365.Pp
366.Dl "date -v3m -v30d -v0y -v-1m"
367.Pp
368because there is no such date as the 30th of February.
369.Pp
370The command:
371.Pp
372.Dl "date -v1d -v+1m -v-1d -v-fri"
373.Pp
374will display the last Friday of the month:
375.Pp
376.Dl "Fri Aug 29 04:31:11 BST 1997"
377.Pp
378where it is currently
379.Li "Mon Aug  4 04:31:11 BST 1997" .
380.Pp
381The command:
382.Pp
383.Dl "date 8506131627"
384.Pp
385sets the date to
386.Dq Li "June 13, 1985, 4:27 PM" .
387.Pp
388.Dl "date ""+%Y%m%d%H%M.%S"""
389.Pp
390may be used on one machine to print out the date
391suitable for setting on another.
392.Qq ( Li "+%m%d%H%M%Y.%S"
393for use on
394.Tn Linux . )
395.Pp
396The command:
397.Pp
398.Dl "date 1432"
399.Pp
400sets the time to
401.Li "2:32 PM" ,
402without modifying the date.
403.Pp
404Finally the command:
405.Pp
406.Dl "date -j -f ""%a %b %d %T %Z %Y"" ""`date`"" ""+%s"""
407.Pp
408can be used to parse the output from
409.Nm
410and express it in Epoch time.
411.Sh DIAGNOSTICS
412Occasionally, when
413.Xr timed 8
414synchronizes the time on many hosts, the setting of a new time value may
415require more than a few seconds.
416On these occasions,
417.Nm
418prints:
419.Ql Network time being set .
420The message
421.Ql Communication error with timed
422occurs when the communication
423between
424.Nm
425and
426.Xr timed 8
427fails.
428.Sh SEE ALSO
429.Xr locale 1 ,
430.Xr gettimeofday 2 ,
431.Xr getutxent 3 ,
432.Xr strftime 3 ,
433.Xr strptime 3 ,
434.Xr timed 8
435.Rs
436.%T "TSP: The Time Synchronization Protocol for UNIX 4.3BSD"
437.%A R. Gusella
438.%A S. Zatti
439.Re
440.Sh STANDARDS
441The
442.Nm
443utility is expected to be compatible with
444.St -p1003.2 .
445The
446.Fl d , f , j , n , r , t ,
447and
448.Fl v
449options are all extensions to the standard.
450.Sh HISTORY
451A
452.Nm
453command appeared in
454.At v1 .
455