diff options
| author | Kyle Evans <kevans@FreeBSD.org> | 2022-06-28 03:54:13 +0000 |
|---|---|---|
| committer | Kyle Evans <kevans@FreeBSD.org> | 2022-09-18 06:26:39 +0000 |
| commit | e683e1fc0fdefcfbec0aa0f254c23950db41aa66 (patch) | |
| tree | bc41e660c388bb9abda81aa613e28a035f255db6 /bin/date | |
| parent | f248e70fc1a419dc596023f47fea3ffa829eba3e (diff) | |
Diffstat (limited to 'bin/date')
| -rw-r--r-- | bin/date/date.1 | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/bin/date/date.1 b/bin/date/date.1 index f9ced543c0d8..0fbc8b9097be 100644 --- a/bin/date/date.1 +++ b/bin/date/date.1 @@ -32,7 +32,7 @@ .\" @(#)date.1 8.3 (Berkeley) 4/28/95 .\" $FreeBSD$ .\" -.Dd November 3, 2021 +.Dd May 31, 2022 .Dt DATE 1 .Os .Sh NAME @@ -220,7 +220,15 @@ seconds are in the range 0-59, minutes are in the range 0-59, hours are in the range 0-23, month days are in the range 1-31, week days are in the range 0-6 (Sun-Sat), months are in the range 1-12 (Jan-Dec) -and years are in the range 80-38 or 1980-2038. +and years are in a limited range depending on the platform. +.Pp +On i386, years are in the range 69-38 representing 1969-2038. +On every other platform, years 0-68 are accepted and represent 2000-2068, and +69-99 are accepted and represent 1969-1999. +In both cases, years between 100 and 1900 (both included) are accepted and +interpreted as relative to 1900 of the Gregorian calendar with a limit of 138 on +i386 and a much higher limit on every other platform. +Years starting at 1901 are also accepted, and are interpreted as absolute years. .Pp If .Ar val |
