.
[coreutils.git] / doc / getdate.texi
blob09c690a4649ab1582f6d897aea576d1edd478198
1 @node Date input formats
2 @chapter Date input formats
4 @cindex date input formats
5 @findex getdate
7 First, a quote:
9 @quotation
10 Our units of temporal measurement, from seconds on up to months, are so
11 complicated, asymmetrical and disjunctive so as to make coherent mental
12 reckoning in time all but impossible.  Indeed, had some tyrannical god
13 contrived to enslave our minds to time, to make it all but impossible
14 for us to escape subjection to sodden routines and unpleasant surprises,
15 he could hardly have done better than handing down our present system.
16 It is like a set of trapezoidal building blocks, with no vertical or
17 horizontal surfaces, like a language in which the simplest thought
18 demands ornate constructions, useless particles and lengthy
19 circumlocutions.  Unlike the more successful patterns of language and
20 science, which enable us to face experience boldly or at least
21 level-headedly, our system of temporal calculation silently and
22 persistently encourages our terror of time.
24 @dots{}  It is as though architects had to measure length in feet, width
25 in meters and height in ells; as though basic instruction manuals
26 demanded a knowledge of five different languages.  It is no wonder then
27 that we often look into our own immediate past or future, last Tuesday
28 or a week from Sunday, with feelings of helpless confusion.  @dots{}
30 --- Robert Grudin, @cite{Time and the Art of Living}.
31 @end quotation
33 This section describes the textual date representations that GNU
34 programs accept.  These are the strings you, as a user, can supply as
35 arguments to the various programs.  The C interface (via the
36 @code{getdate} function) is not described here.
38 @cindex beginning of time, for Unix
39 @cindex epoch, for Unix
40 Although the date syntax here can represent any possible time since zero
41 A.D., computer integers are not big enough for such a (comparatively)
42 long time.  The earliest date semantically allowed on Unix systems is
43 midnight, 1 January 1970 UCT.
45 @menu
46 * General date syntax::            Common rules.
47 * Calendar date item::             19 Dec 1994.
48 * Time of day item::               9:20pm.
49 * Time zone item::                 EST, DST, BST, UTC, ...
50 * Day of week item::               Monday and others.
51 * Relative item in date strings::  next tuesday, 2 years ago.
52 * Pure numbers in date strings::   19931219, 1440.
53 * Authors of getdate::             Bellovin, Salz, Berets, et al.
54 @end menu
57 @node General date syntax
58 @section General date syntax
60 @cindex general date syntax
62 @cindex items in date strings
63 A @dfn{date} is a string, possibly empty, containing many items
64 separated by whitespace.  The whitespace may be omitted when no
65 ambiguity arises.  The empty string means the beginning of today (i.e.,
66 midnight).  Order of the items is immaterial.  A date string may contain
67 many flavors of items:
69 @itemize @bullet
70 @item calendar date items
71 @item time of the day items
72 @item time zone items
73 @item day of the week items
74 @item relative items
75 @item pure numbers.
76 @end itemize
78 @noindent We describe each of these item types in turn, below.
80 @cindex numbers, written-out
81 @cindex ordinal numbers
82 @findex first @r{in date strings}
83 @findex next @r{in date strings}
84 @findex last @r{in date strings}
85 A few numbers may be written out in words in most contexts.  This is
86 most useful for specifying day of the week items or relative items (see
87 below).  Here is the list: @samp{first} for 1, @samp{next} for 2,
88 @samp{third} for 3, @samp{fourth} for 4, @samp{fifth} for 5,
89 @samp{sixth} for 6, @samp{seventh} for 7, @samp{eighth} for 8,
90 @samp{ninth} for 9, @samp{tenth} for 10, @samp{eleventh} for 11 and
91 @samp{twelfth} for 12.  Also, @samp{last} means exactly @math{-1}.
93 @cindex months, written-out
94 When a month is written this way, it is still considered to be written
95 numerically, instead of being ``spelled in full''; this changes the
96 allowed strings.
98 @cindex case, ignored in dates
99 @cindex comments, in dates
100 Alphabetic case is completely ignored in dates.  Comments may be introduced
101 between round parentheses, as long as included parentheses are properly
102 nested.  Hyphens not followed by a digit are currently ignored.  Leading
103 zeros on numbers are ignored.
106 @node Calendar date item
107 @section Calendar date item
109 @cindex calendar date item
111 A @dfn{calendar date item} specifies a day of the year.  It is
112 specified differently, depending on whether the month is specified
113 numerically or literally.  All these strings specify the same calendar date:
115 @example
116 1970-09-17           # ISO 8601.
117 70-9-17              # This century assumed by default.
118 70-09-17             # Leading zeros are ignored.
119 9/17/72              # Common U.S. writing.
120 24 September 1972
121 24 Sept 72           # September has a special abbreviation.
122 24 Sep 72            # Three-letter abbreviations always allowed.
123 Sep 24, 1972
124 24-sep-72
125 24sep72
126 @end example
128 The year can also be omitted.  In this case, the last specified year is
129 used, or the current year if none.  For example:
131 @example
132 9/17
133 sep 17
134 @end example
136 Here are the rules.
138 @cindex ISO 8601 date format
139 @cindex date format, ISO 8601
140 For numeric months, the ISO 8601 format
141 @samp{@var{year}-@var{month}-@var{day}} is allowed, where @var{year} is
142 any positive number, @var{month} is a number between 01 and 12, and
143 @var{day} is a number between 01 and 31.  A leading zero must be present
144 if a number is less than ten.  If @var{year} is less than 100, then 1900
145 is added to it to force a date in this century.  The construct
146 @samp{@var{month}/@var{day}/@var{year}}, popular in the United States,
147 is accepted.  Also @samp{@var{month}/@var{day}}, omitting the year.
149 @cindex month names in date strings
150 @cindex abbreviations for months
151 Literal months may be spelled out in full: @samp{January},
152 @samp{February}, @samp{March}, @samp{April}, @samp{May}, @samp{June},
153 @samp{July}, @samp{August}, @samp{September}, @samp{October},
154 @samp{November} or @samp{December}.  Literal months may be abbreviated
155 to their first three letters, possibly followed by an abbreviating dot.
156 It is also permitted to write @samp{Sept} instead of @samp{September}.
158 When months are written literally, the calendar date may be given as any
159 of the following:
161 @example
162 @var{day} @var{month} @var{year}
163 @var{day} @var{month}
164 @var{month} @var{day} @var{year}
165 @var{day}-@var{month}-@var{year}
166 @end example
168 Or, omitting the year:
170 @example
171 @var{month} @var{day}
172 @end example
175 @node Time of day item
176 @section Time of day item
178 @cindex time of day item
180 A @dfn{time of day item} in date strings specifies the time on a given
181 day.  Here are some examples, all of which represent the same time:
183 @example
184 20:02:0
185 20:02
186 8:02pm
187 20:02-0500      # In EST (Eastern U.S. Standard Time).
188 @end example
190 More generally, the time of the day may be given as
191 @samp{@var{hour}:@var{minute}:@var{second}}, where @var{hour} is
192 a number between 0 and 23, @var{minute} is a number between 0 and
193 59, and @var{second} is a number between 0 and 59.  Alternatively,
194 @samp{:@var{second}} can be omitted, in which case it is taken to
195 be zero.
197 @findex am @r{in date strings}
198 @findex pm @r{in date strings}
199 @findex midnight @r{in date strings}
200 @findex noon @r{in date strings}
201 If the time is followed by @samp{am} or @samp{pm} (or @samp{a.m.}
202 or @samp{p.m.}), @var{hour} is restricted to run from 1 to 12, and
203 @samp{:@var{minute}} may be omitted (taken to be zero).  @samp{am}
204 indicates the first half of the day, @samp{pm} indicates the second
205 half of the day.  In this notation, 12 is the predecessor of 1:
206 midnight is @samp{12am} while noon is @samp{12pm}.
208 @cindex time zone correction
209 @cindex minutes, time zone correction by
210 The time may alternatively be followed by a time zone correction,
211 expressed as @samp{@var{s}@var{hh}@var{mm}}, where @var{s} is @samp{+}
212 or @samp{-}, @var{hh} is a number of zone hours and @var{mm} is a number
213 of zone minutes.  When a time zone correction is given this way, it
214 forces interpretation of the time relative to
215 Coordinated Universal Time (UTC), overriding any previous
216 specification for the time zone or the local time zone.  The @var{minute}
217 part of the time of the day may not be elided when a time zone correction
218 is used.  This is the only way to specify a time zone correction by
219 fractional parts of an hour.
221 Either @samp{am}/@samp{pm} or a time zone correction may be specified,
222 but not both.
225 @node Time zone item
226 @section Time zone item
228 @cindex time zone item
230 A @dfn{time zone item} specifies an international time zone, indicated by
231 a small set of letters.  They are supported for backward compatibility reasons,
232 but they are not recommended because they are ambiguous in practice:
233 for example, the abbreviation @samp{EST} has different meanings in
234 Australia and the United States.  Any included period is ignored.  Military
235 time zone designations use a single letter.  Currently, only integral
236 zone hours may be represented in a time zone item.  See the previous
237 section for a finer control over the time zone correction.
239 Here are many non-daylight-saving-time time zones, indexed by the zone
240 hour value.
242 @table @asis
243 @item -1200
244 @samp{Y} for militaries.
245 @item -1100
246 @samp{X} for militaries.
247 @item -1000
248 @samp{W} for militaries.
249 @item -0900
250 @samp{V} for militaries.
251 @item -0800
252 @samp{PST} for Pacific Standard, and
253 @samp{U} for militaries.
254 @item -0700
255 @samp{MST} for Mountain Standard, and
256 @samp{T} for militaries.
257 @item -0600
258 @samp{CST} for Central Standard, and
259 @samp{S} for militaries.
260 @item -0500
261 @samp{EST} for Eastern Standard, and
262 @samp{R} for militaries.
263 @item -0400
264 @samp{AST} for Atlantic Standard, and
265 @samp{Q} for militaries.
266 @item -0300
267 @samp{P} for militaries.
268 @item -0200
269 @samp{O} for militaries.
270 @item -0100
271 @samp{N} for militaries.
272 @item +0000
273 @cindex Greenwich Mean Time
274 @cindex Coordinated Universal Time
275 @cindex Universal Coordinated Time
276 @cindex Universal Time (Coordinated)
277 @samp{GMT} for Greenwich Mean,
278 @samp{UT} for Universal,
279 @samp{UTC} for Coordinated Universal,
280 @samp{WET} for Western European, and
281 @samp{Z} for ISO 8601 and militaries.
282 @item +0100
283 @samp{A} for militaries,
284 @samp{CET} for Central European,
285 @samp{MET} for Midden Europesche Tijd (Dutch), and
286 @samp{MEZ} for Mittel-Europ@"aische Zeit (German).
287 @item +0200
288 @samp{B} for militaries, and
289 @samp{EET} for Eastern European.
290 @item +0300
291 @samp{C} for militaries.
292 @item +0400
293 @samp{D} for militaries.
294 @item +0500
295 @samp{E} for militaries.
296 @item +0600
297 @samp{F} for militaries.
298 @item +0700
299 @samp{G} for militaries.
300 @item +0800
301 @samp{H} for militaries.
302 @item +0900
303 @samp{I} for militaries, and
304 @samp{JST} for Japan Standard.
305 @item +1000
306 @samp{GST} for Guam Standard, and
307 @samp{K} for militaries.
308 @item +1100
309 @samp{L} for militaries.
310 @item +1200
311 @samp{M} for militaries, and
312 @samp{NZST} for New Zealand Standard.
313 @end table
315 @cindex daylight-saving time
316 Here are many daylight-saving time (DST) time zones,
317 indexed by the zone hour value.  Also, by
318 following a non-DST time zone by the string @samp{DST} in a separate word
319 (that is, separated by some whitespace), the corresponding DST time zone
320 may be specified.
322 @table @asis
323 @item -0700
324 @samp{PDT} for Pacific Daylight.
325 @item -0600
326 @samp{MDT} for Mountain Daylight.
327 @item -0500
328 @samp{CDT} for Central Daylight.
329 @item -0400
330 @samp{EDT} for Eastern Daylight.
331 @item -0300
332 @samp{ADT} for Atlantic Daylight.
333 @item +0100
334 @samp{BST} for British Summer, and
335 @samp{WEST} for Western European Summer.
336 @item +0200
337 @samp{CEST} for Central European Summer,
338 @samp{MEST} for Midden Europesche S. Tijd (Dutch), and
339 @samp{MESZ} for Mittel-Europ@"aische Sommerzeit (German).
340 @item +1300
341 @samp{NZDT} for New Zealand Daylight.
342 @end table
345 @node Day of week item
346 @section Day of week item
348 @cindex day of week item
350 The explicit mention of a day of the week will forward the date
351 (only if necessary) to reach that day of the week in the future.
353 Days of the week may be spelled out in full: @samp{Sunday},
354 @samp{Monday}, @samp{Tuesday}, @samp{Wednesday}, @samp{Thursday},
355 @samp{Friday} or @samp{Saturday}.  Days may be abbreviated to their
356 first three letters, optionally followed by a period.  The special
357 abbreviations @samp{Tues} for @samp{Tuesday}, @samp{Wednes} for
358 @samp{Wednesday} and @samp{Thur} or @samp{Thurs} for @samp{Thursday} are
359 also allowed.
361 @findex next @var{day}
362 @findex last @var{day}
363 A number may precede a day of the week item to move forward
364 supplementary weeks.  It is best used in expression like @samp{third
365 monday}.  In this context, @samp{last @var{day}} or @samp{next
366 @var{day}} is also acceptable; they move one week before or after
367 the day that @var{day} by itself would represent.
369 A comma following a day of the week item is ignored.
372 @node Relative item in date strings
373 @section Relative item in date strings
375 @cindex relative items in date strings
376 @cindex displacement of dates
378 @dfn{Relative items} adjust a date (or the current date if none) forward
379 or backward.  The effects of relative items accumulate.  Here are some
380 examples:
382 @example
383 1 year
384 1 year ago
385 3 years
386 2 days
387 @end example
389 @findex year @r{in date strings}
390 @findex month @r{in date strings}
391 @findex fortnight @r{in date strings}
392 @findex week @r{in date strings}
393 @findex day @r{in date strings}
394 @findex hour @r{in date strings}
395 @findex minute @r{in date strings}
396 The unit of time displacement may be selected by the string @samp{year}
397 or @samp{month} for moving by whole years or months.  These are fuzzy
398 units, as years and months are not all of equal duration.  More precise
399 units are @samp{fortnight} which is worth 14 days, @samp{week} worth 7
400 days, @samp{day} worth 24 hours, @samp{hour} worth 60 minutes,
401 @samp{minute} or @samp{min} worth 60 seconds, and @samp{second} or
402 @samp{sec} worth one second.  An @samp{s} suffix on these units is
403 accepted and ignored.
405 @findex ago @r{in date strings}
406 The unit of time may be preceded by a multiplier, given as an optionally
407 signed number.  Unsigned numbers are taken as positively signed.  No
408 number at all implies 1 for a multiplier.  Following a relative item by
409 the string @samp{ago} is equivalent to preceding the unit by a
410 multiplicator with value @math{-1}.
412 @findex day @r{in date strings}
413 @findex tomorrow @r{in date strings}
414 @findex yesterday @r{in date strings}
415 The string @samp{tomorrow} is worth one day in the future (equivalent
416 to @samp{day}), the string @samp{yesterday} is worth
417 one day in the past (equivalent to @samp{day ago}).
419 @findex now @r{in date strings}
420 @findex today @r{in date strings}
421 @findex this @r{in date strings}
422 The strings @samp{now} or @samp{today} are relative items corresponding
423 to zero-valued time displacement, these strings come from the fact
424 a zero-valued time displacement represents the current time when not
425 otherwise change by previous items.  They may be used to stress other
426 items, like in @samp{12:00 today}.  The string @samp{this} also has
427 the meaning of a zero-valued time displacement, but is preferred in
428 date strings like @samp{this thursday}.
430 When a relative item makes the resulting date to cross the boundary
431 between DST and non-DST (or vice-versa), the hour is adjusted according
432 to the local time.
435 @node Pure numbers in date strings
436 @section Pure numbers in date strings
438 @cindex pure numbers in date strings
440 The precise intepretation of a pure decimal number is dependent of
441 the context in the date string.
443 If the decimal number is of the form @var{yyyy}@var{mm}@var{dd} and no
444 other calendar date item (@pxref{Calendar date item}) appears before it
445 in the date string, then @var{yyyy} is read as the year, @var{mm} as the
446 month number and @var{dd} as the day of the month, for the specified
447 calendar date.
449 If the decimal number is of the form @var{hh}@var{mm} and no other time
450 of day item appears before it in the date string, then @var{hh} is read
451 as the hour of the day and @var{mm} as the minute of the hour, for the
452 specified time of the day.  @var{mm} can also be omitted.
454 If both a calendar date and a time of day appear to the left of a number
455 in the date string, but no relative item, then the number overrides the
456 year.
459 @node Authors of getdate
460 @section Authors of @code{getdate}
462 @cindex authors of @code{getdate}
464 @cindex Bellovin, Steven M.
465 @cindex Salz, Rich
466 @cindex Berets, Jim
467 @cindex MacKenzie, David
468 @cindex Meyering, Jim
469 @code{getdate} was originally implemented by Steven M. Bellovin
470 (@email{smb@@research.att.com}) while at the University of North Carolina
471 at Chapel Hill.  The code was later tweaked by a couple of people on
472 Usenet, then completely overhauled by Rich $alz (@email{rsalz@@bbn.com})
473 and Jim Berets (@email{jberets@@bbn.com}) in August, 1990.  Various
474 revisions for the GNU system were made by David MacKenzie, Jim Meyering,
475 and others.
477 @cindex Pinard, F.
478 @cindex Berry, K.
479 This chapter was originally produced by Fran@,{c}ois Pinard
480 (@email{pinard@@iro.umontreal.ca}) from the @file{getdate.y} source code,
481 and then edited by K.@: Berry (@email{kb@@cs.umb.edu}).