]> git.saurik.com Git - apple/shell_cmds.git/blame - date/date.1
shell_cmds-216.60.1.tar.gz
[apple/shell_cmds.git] / date / date.1
CommitLineData
e1a085ba 1.\"-
44bd5ea7
A
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.
44bd5ea7
A
16.\" 4. 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
71aad674 33.\" $FreeBSD$
44bd5ea7 34.\"
71aad674 35.Dd May 7, 2015
44bd5ea7
A
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
71aad674
A
43.Op Fl jRu
44.Op Fl r Ar seconds | Ar filename
e1a085ba
A
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 Ar mm Oc Ar dd Oc Ar HH
58.Ar MM Oo Oo Ar cc Oc Ar yy Oc Op Ar .ss
59.Sm on
60.Nm
71aad674 61.Op Fl jnRu
e1a085ba
A
62.Fl f Ar input_fmt new_date
63.Op Cm + Ns Ar output_fmt
daf87b50 64.Nm
e1a085ba
A
65.Op Fl d Ar dst
66.Op Fl t Ar minutes_west
44bd5ea7 67.Sh DESCRIPTION
e1a085ba 68When invoked without arguments, the
44bd5ea7 69.Nm
e1a085ba
A
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
71aad674 83.Xr securelevel 7 )
e1a085ba
A
84is greater than 1,
85the time may not be changed by more than 1 second.
44bd5ea7
A
86.Pp
87The options are as follows:
88.Bl -tag -width Ds
e1a085ba
A
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
106.Ar mm Oc
107.Ar dd Oc
108.Ar HH Oc
109.Ar MM
110.Oo Oo
111.Ar cc Oc
112.Ar yy Oc Oo
113.Ar .ss Oc
114.Sm on
115format.
116Parsing is done using
117.Xr strptime 3 .
118.It Fl j
119Do not try to set the date.
120This allows you to use the
121.Fl f
122flag in addition to the
123.Cm +
124option to convert one date format to another.
44bd5ea7 125.It Fl n
e1a085ba 126By default, if the
44bd5ea7 127.Xr timed 8
e1a085ba 128daemon is running,
44bd5ea7 129.Nm
e1a085ba 130sets the time on all of the machines in the local group.
44bd5ea7
A
131The
132.Fl n
e1a085ba
A
133option suppresses this behavior and causes the time to be set only on the
134current machine.
71aad674
A
135.It Fl R
136Use RFC 2822 date and time output format. This is equivalent to use
137.Dq Li %a, %d %b %Y \&%T %z
138as
139.Ar output_fmt
140while
141.Ev LC_TIME
142is set to the
143.Dq C
144locale .
e1a085ba
A
145.It Fl r Ar seconds
146Print the date and time represented by
147.Ar seconds ,
148where
44bd5ea7 149.Ar seconds
e1a085ba
A
150is the number of seconds since the Epoch
151(00:00:00 UTC, January 1, 1970;
152see
153.Xr time 3 ) ,
154and can be specified in decimal, octal, or hex.
71aad674
A
155.It Fl r Ar filename
156Print the date and time of the last modification of
157.Ar filename .
e1a085ba
A
158.It Fl t Ar minutes_west
159Set the system's value for minutes west of
160.Tn GMT .
161.Ar minutes_west
162specifies the number of minutes returned in
163.Fa tz_minuteswest
164by future calls to
165.Xr gettimeofday 2 .
44bd5ea7
A
166.It Fl u
167Display or set the date in
168.Tn UTC
e1a085ba
A
169(Coordinated Universal) time.
170.It Fl v
171Adjust (i.e., take the current date and display the result of the
172adjustment; not actually set the date) the second, minute, hour, month
173day, week day, month or year according to
174.Ar val .
175If
176.Ar val
177is preceded with a plus or minus sign,
178the date is adjusted forwards or backwards according to the remaining string,
179otherwise the relevant part of the date is set.
180The date can be adjusted as many times as required using these flags.
181Flags are processed in the order given.
182.Pp
183When setting values
184(rather than adjusting them),
185seconds are in the range 0-59, minutes are in the range 0-59, hours are
186in the range 0-23, month days are in the range 1-31, week days are in the
187range 0-6 (Sun-Sat),
188months are in the range 1-12 (Jan-Dec)
189and years are in the range 80-38 or 1980-2038.
190.Pp
191If
192.Ar val
193is numeric, one of either
194.Ar y ,
195.Ar m ,
196.Ar w ,
197.Ar d ,
198.Ar H ,
199.Ar M
200or
201.Ar S
202must be used to specify which part of the date is to be adjusted.
203.Pp
204The week day or month may be specified using a name rather than a
205number.
206If a name is used with the plus
207(or minus)
208sign, the date will be put forwards
209(or backwards)
210to the next
211(previous)
212date that matches the given week day or month.
213This will not adjust the date,
214if the given week day or month is the same as the current one.
215.Pp
216When a date is adjusted to a specific value or in units greater than hours,
217daylight savings time considerations are ignored.
218Adjustments in units of hours or less honor daylight saving time.
219So, assuming the current date is March 26, 0:30 and that the DST adjustment
220means that the clock goes forward at 01:00 to 02:00, using
221.Fl v No +1H
222will adjust the date to March 26, 2:30.
223Likewise, if the date is October 29, 0:30 and the DST adjustment means that
224the clock goes back at 02:00 to 01:00, using
225.Fl v No +3H
226will be necessary to reach October 29, 2:30.
227.Pp
228When the date is adjusted to a specific value that does not actually exist
229(for example March 26, 1:30 BST 2000 in the Europe/London timezone),
230the date will be silently adjusted forwards in units of one hour until it
231reaches a valid time.
232When the date is adjusted to a specific value that occurs twice
233(for example October 29, 1:30 2000),
234the resulting timezone will be set so that the date matches the earlier of
235the two times.
236.Pp
71aad674
A
237It is not possible to adjust a date to an invalid absolute day, so using
238the switches
239.Fl v No 31d Fl v No 12m
240will simply fail five months of the year.
241It is therefore usual to set the month before setting the day; using
242.Fl v No 12m Fl v No 31d
243always works.
244.Pp
e1a085ba
A
245Adjusting the date by months is inherently ambiguous because
246a month is a unit of variable length depending on the current date.
247This kind of date adjustment is applied in the most intuitive way.
248First of all,
249.Nm
250tries to preserve the day of the month.
251If it is impossible because the target month is shorter than the present one,
252the last day of the target month will be the result.
253For example, using
254.Fl v No +1m
255on May 31 will adjust the date to June 30, while using the same option
256on January 30 will result in the date adjusted to the last day of February.
257This approach is also believed to make the most sense for shell scripting.
258Nevertheless, be aware that going forth and back by the same number of
259months may take you to a different date.
260.Pp
261Refer to the examples below for further details.
44bd5ea7
A
262.El
263.Pp
e1a085ba
A
264An operand with a leading plus
265.Pq Sq +
266sign signals a user-defined format string
267which specifies the format in which to display the date and time.
268The format string may contain any of the conversion specifications
269described in the
44bd5ea7
A
270.Xr strftime 3
271manual page, as well as any arbitrary text.
e1a085ba
A
272A newline
273.Pq Ql \en
274character is always output after the characters specified by
44bd5ea7 275the format string.
e1a085ba
A
276The format string for the default display is
277.Dq +%+ .
44bd5ea7
A
278.Pp
279If an operand does not have a leading plus sign, it is interpreted as
280a value for setting the system's notion of the current date and time.
281The canonical representation for setting the date and time is:
282.Pp
283.Bl -tag -width Ds -compact -offset indent
284.It Ar cc
e1a085ba
A
285Century
286(either 19 or 20)
287prepended to the abbreviated year.
44bd5ea7 288.It Ar yy
e1a085ba
A
289Year in abbreviated form
290(e.g., 89 for 1989, 06 for 2006).
44bd5ea7 291.It Ar mm
e1a085ba 292Numeric month, a number from 1 to 12.
44bd5ea7 293.It Ar dd
e1a085ba
A
294Day, a number from 1 to 31.
295.It Ar HH
296Hour, a number from 0 to 23.
297.It Ar MM
298Minutes, a number from 0 to 59.
44bd5ea7 299.It Ar ss
e1a085ba
A
300Seconds, a number from 0 to 61
301(59 plus a maximum of two leap seconds).
44bd5ea7
A
302.El
303.Pp
304Everything but the minutes is optional.
305.Pp
e1a085ba
A
306Time changes for Daylight Saving Time, standard time, leap seconds,
307and leap years are handled automatically.
308.Sh ENVIRONMENT
1c4c78a5 309The following environment variables affect the execution of
e1a085ba
A
310.Nm :
311.Bl -tag -width Ds
1c4c78a5
A
312.It Ev TZ
313The timezone to use when displaying dates.
e1a085ba
A
314The normal format is a pathname relative to
315.Pa /usr/share/zoneinfo .
316For example, the command
317.Dq TZ=America/Los_Angeles date
318displays the current time in California.
1c4c78a5
A
319See
320.Xr environ 7
321for more information.
322.El
323.Sh FILES
324.Bl -tag -width /var/log/messages -compact
1c4c78a5 325.It Pa /var/log/messages
e1a085ba 326record of the user setting the time
1c4c78a5 327.El
e1a085ba
A
328.Sh EXIT STATUS
329The
330.Nm
331utility exits 0 on success, 1 if unable to set the date, and 2
332if able to set the local date, but unable to set it globally.
44bd5ea7
A
333.Sh EXAMPLES
334The command:
e1a085ba
A
335.Pp
336.Dl "date ""+DATE: %Y-%m-%d%nTIME: %H:%M:%S"""
44bd5ea7
A
337.Pp
338will display:
339.Bd -literal -offset indent
e1a085ba 340DATE: 1987-11-21
44bd5ea7
A
341TIME: 13:36:16
342.Ed
343.Pp
e1a085ba
A
344In the Europe/London timezone, the command:
345.Pp
346.Dl "date -v1m -v+1y"
347.Pp
348will display:
349.Pp
350.Dl "Sun Jan 4 04:15:24 GMT 1998"
351.Pp
352where it is currently
353.Li "Mon Aug 4 04:15:24 BST 1997" .
354.Pp
355The command:
356.Pp
357.Dl "date -v1d -v3m -v0y -v-1d"
358.Pp
359will display the last day of February in the year 2000:
360.Pp
361.Dl "Tue Feb 29 03:18:00 GMT 2000"
362.Pp
71aad674 363So will the command:
e1a085ba 364.Pp
71aad674 365.Dl "date -v3m -v30d -v0y -v-1m"
e1a085ba
A
366.Pp
367because there is no such date as the 30th of February.
368.Pp
44bd5ea7 369The command:
e1a085ba
A
370.Pp
371.Dl "date -v1d -v+1m -v-1d -v-fri"
372.Pp
373will display the last Friday of the month:
374.Pp
375.Dl "Fri Aug 29 04:31:11 BST 1997"
376.Pp
377where it is currently
378.Li "Mon Aug 4 04:31:11 BST 1997" .
379.Pp
380The command:
381.Pp
382.Dl "date 0613162785"
44bd5ea7
A
383.Pp
384sets the date to
385.Dq Li "June 13, 1985, 4:27 PM" .
386.Pp
ddb4a88b 387.Dl "date ""+%m%d%H%M%Y.%S"""
e1a085ba
A
388.Pp
389may be used on one machine to print out the date
390suitable for setting on another.
e1a085ba 391.Pp
44bd5ea7 392The command:
e1a085ba
A
393.Pp
394.Dl "date 1432"
44bd5ea7
A
395.Pp
396sets the time to
397.Li "2:32 PM" ,
398without modifying the date.
44bd5ea7 399.Pp
e1a085ba
A
400Finally the command:
401.Pp
402.Dl "date -j -f ""%a %b %d %T %Z %Y"" ""`date`"" ""+%s"""
403.Pp
404can be used to parse the output from
405.Nm
406and express it in Epoch time.
407.Sh DIAGNOSTICS
44bd5ea7
A
408Occasionally, when
409.Xr timed 8
e1a085ba
A
410synchronizes the time on many hosts, the setting of a new time value may
411require more than a few seconds.
44bd5ea7
A
412On these occasions,
413.Nm
414prints:
415.Ql Network time being set .
416The message
417.Ql Communication error with timed
418occurs when the communication
419between
420.Nm
e1a085ba
A
421and
422.Xr timed 8
423fails.
1c4c78a5 424.Sh LEGACY SYNOPSIS
e1a085ba 425As above, except for the second line, which is:
1c4c78a5 426.Pp
e1a085ba
A
427.Nm
428.Op Fl jnu
429.Sm off
430.Op Oo Oo Oo Oo Ar cc Oc Ar yy Oc Ar mm Oc Ar dd Oc Ar HH
431.Ar MM Op Ar .ss
432.Sm on
1c4c78a5 433.Sh LEGACY DIAGNOSTICS
e1a085ba
A
434When invoked in legacy mode, the following exit values are returned:
435.Bl -tag -width X -compact
436.It 0
437The date was written successfully
438.It 1
439Unable to set the date
440.It 2
441Able to set the local date, but unable to set it globally
442.El
ddb4a88b
A
443.Pp
444For more information about legacy mode, see
445.Xr compat 5 .
1c4c78a5 446.Sh SEE ALSO
71aad674 447.Xr locale 1 ,
1c4c78a5 448.Xr gettimeofday 2 ,
71aad674 449.Xr getutxent 3 ,
1c4c78a5 450.Xr strftime 3 ,
e1a085ba 451.Xr strptime 3 ,
1c4c78a5
A
452.Xr timed 8
453.Rs
454.%T "TSP: The Time Synchronization Protocol for UNIX 4.3BSD"
455.%A R. Gusella
456.%A S. Zatti
457.Re
44bd5ea7
A
458.Sh STANDARDS
459The
460.Nm
e1a085ba 461utility is expected to be compatible with
44bd5ea7 462.St -p1003.2 .
71aad674
A
463The
464.Fl d , f , j , n , r , t ,
465and
466.Fl v
467options are all extensions to the standard.
e1a085ba
A
468.Sh HISTORY
469A
470.Nm
471command appeared in
472.At v1 .