错误消息“日期:无效日期 '2016-10-16'”

错误消息“日期:无效日期 '2016-10-16'”

今天我的时钟自动调整为夏令时,并且 crontab 中的脚本开始失败。我查看了发生的情况,并显示以下错误LC_ALL=C

日期:无效日期“2016-10-16”

我认为最好重新启动系统,但现在我已经重新启动,并且错误仍然出现:

$ date -d '2016-10-15'
Sat Oct 15 00:00:00 BRT 2016
$ date -d '2016-10-16'
date: data inválida “2016-10-16”
$ date -d '2016-10-17'
Mon Oct 17 00:00:00 BRST 2016

可能是什么原因造成的?

答案1

问题是您所在时区的夏令时于 2016 年 10 月 16 日更改并转发了 1 小时:

$ zdump -v America/Sao_Paulo | awk '/Oct 16/ && /2016/'
America/Sao_Paulo  Sun Oct 16 02:59:59 2016 UTC = Sat Oct 15 23:59:59 2016 BRT isdst=0
America/Sao_Paulo  Sun Oct 16 03:00:00 2016 UTC = Sun Oct 16 01:00:00 2016 BRST isdst=1

00:00因此,当天到00:59当天之间的任何时间在您的时区都被视为无效(但在其他时区可能有效):

$ TZ=America/Sao_Paulo gdate -d '2016-10-16 0:59'
gdate: invalid date ‘2016-10-16 0:59’

$ TZ=Asia/Ho_Chi_Minh gdate -d '2016-10-16 0:59'
Sun Oct 16 00:59:00 ICT 2016

您可以设置额外的时间,但不在该范围内:

$ TZ=America/Sao_Paulo gdate -d '2016-10-16 1:00'
Sun Oct 16 01:00:00 BRST 2016

以上是 GNU 日期行为。

BSD日期没有这个问题。如果输入的日期在时区中无效,则会默默向前调整 1 小时,直到达到有效时间:

$ TZ=America/Sao_Paulo date -j -f '%Y%m%d%H%M' 201610160000
Sun Oct 16 01:00:53 BRST 2016

相关内容