mirror of
https://frontier.innolan.net/rainlance/amiga-tz.git
synced 2025-11-21 00:21:44 +00:00
Most of this patch is to commentary, to distinguish better among the similar characters hyphen '-', minus sign '−', en dash '–' (used for ranges), and em dash '—'. Render ordinary dashes in text as spaced en dashes, as this gives better-looking results in monospaced fonts. * yearistype.sh, zic.c: Reword diagnostics so that they do not use hyphens as if they were dashes. Since we are sticking to ASCII in programs, we can't use proper dashes in diagnostics.
77 lines
2.0 KiB
Groff
77 lines
2.0 KiB
Groff
.TH ZDUMP 8
|
|
.SH NAME
|
|
zdump \- time zone dumper
|
|
.SH SYNOPSIS
|
|
.B zdump
|
|
[
|
|
.B \-\-version
|
|
] [
|
|
.B \-v
|
|
] [
|
|
.B \-V
|
|
] [
|
|
.B \-c
|
|
[loyear,]hiyear ] [
|
|
.B \-t
|
|
[lotime,]hitime ] [ zonename ... ]
|
|
.SH DESCRIPTION
|
|
.I Zdump
|
|
prints the current time in each
|
|
.I zonename
|
|
named on the command line.
|
|
.PP
|
|
These options are available:
|
|
.TP
|
|
.BI "\-\-version"
|
|
Output version information and exit.
|
|
.TP
|
|
.B \-v
|
|
For each
|
|
.I zonename
|
|
on the command line,
|
|
print the time at the lowest possible time value,
|
|
the time one day after the lowest possible time value,
|
|
the times both one second before and exactly at
|
|
each detected time discontinuity,
|
|
the time at one day less than the highest possible time value,
|
|
and the time at the highest possible time value,
|
|
Each line ends with
|
|
.B isdst=1
|
|
if the given time is Daylight Saving Time or
|
|
.B isdst=0
|
|
otherwise.
|
|
.TP
|
|
.B \-V
|
|
Like
|
|
.BR \-v ,
|
|
except omit the times relative to the extreme time values.
|
|
This generates output that is easier to compare to that of
|
|
implementations with different time representations.
|
|
.TP
|
|
.BI "\-c " [loyear,]hiyear
|
|
Cut off verbose output near the start of the given year(s).
|
|
By default,
|
|
the program cuts off verbose output near the starts of the years
|
|
\(mi500 and 2500.
|
|
.TP
|
|
.BI "\-t " [lotime,]hitime
|
|
Cut off verbose output at the start of the given time(s),
|
|
given in decimal seconds since 1970-01-01 00:00:00 UTC.
|
|
.SH LIMITATIONS
|
|
Time discontinuities are found by sampling the results returned by localtime
|
|
at twelve-hour intervals.
|
|
This works in all real-world cases;
|
|
one can construct artificial time zones for which this fails.
|
|
.PP
|
|
In the output, "UT" denotes the value returned by
|
|
.IR gmtime (3),
|
|
which uses UTC for modern time stamps and some other UT flavor for
|
|
time stamps that predate the introduction of UTC.
|
|
No attempt is currently made to have the output use "UTC" for newer
|
|
and "UT" for older time stamps,
|
|
partly because the exact date of the introduction of UTC is problematic.
|
|
.SH "SEE ALSO"
|
|
newctime(3), tzfile(5), zic(8)
|
|
.\" This file is in the public domain, so clarified as of
|
|
.\" 2009-05-17 by Arthur David Olson.
|