diff options
author | Jim Meyering <jim@meyering.net> | 2000-10-18 20:45:20 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-10-18 20:45:20 +0000 |
commit | d478d6efec1ddbfaaf16e633f8616f3c7f6feb81 (patch) | |
tree | efa81a0a0020f9e3637ebba1bb4d006b73bfd197 /doc | |
parent | dbfbb93424adc99b353e1f52b4315005e46715f1 (diff) | |
download | coreutils-d478d6efec1ddbfaaf16e633f8616f3c7f6feb81.tar.xz |
* src/date.c (universal_time): Remove; it's just a temptation to
do the wrong thing.
(main): The -u option now just sets TZ; it doesn't do anything else.
(show_date): Do not do anything special if -u is set.
This affects the behavior of the -I and -R options.
* doc/sh-utils.texi: Document the above.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/sh-utils.texi | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/doc/sh-utils.texi b/doc/sh-utils.texi index 1cf4f0d37..525901394 100644 --- a/doc/sh-utils.texi +++ b/doc/sh-utils.texi @@ -2479,16 +2479,14 @@ Append the hours, minutes, and seconds. @end table If showing any time terms, then include the time zone using the format -@samp{%z}. If @samp{--utc} is also specified, use @samp{%Z} in place of @samp{%z}. @item -R @itemx --rfc-822 @opindex -R @opindex --rfc-822 -Display the time and date using the RFC-822-specified +Display the time and date using the RFC-822-conforming format, @samp{%a, %_d %b %Y %H:%M:%S %z}. -If @samp{--utc} is also specified, use @samp{GMT} in place of @samp{%z}. @item -r @var{file} @itemx --reference=@var{file} @@ -2509,11 +2507,16 @@ Set the time and date to @var{datestr}, See @samp{-d} above. @opindex -u @opindex --utc @opindex --universal -@cindex coordinated universal time +@cindex Coordinated Universal Time +@cindex UTC @cindex Greenwich Mean Time -Print or set the time and date in Universal Coordinated Time instead of -in local (wall clock) time. - +@cindex GMT +Use Coordinated Universal Time (@sc{utc}) by operating as if the +@env{TZ} environment variable was set to the string @samp{UTC0}. +Normally, @command{date} operates in the time zone indicated by +@env{TZ}, or the system default if @env{TZ} is not set. Coordinated +Universal Time is often called ``Greenwich Mean Time'' (@sc{gmt}) for +historical reasons. @end table |