Chinese pages: correct Chinese punctuation (#5240)

This commit is contained in:
bl-ue
2021-08-02 04:41:09 -04:00
committed by GitHub
parent eaef3b4d21
commit 289e30dfb3
373 changed files with 1817 additions and 1810 deletions

View File

@@ -1,19 +1,19 @@
# date
> 设置或显示系统日期.
> 设置或显示系统日期
- 使用默认区域设置的格式显示当前日期 :
`date +"%c"`
- 以 UTC 和 ISO 8601 格式显示当前日期:
- 以 UTC 和 ISO 8601 格式显示当前日期
`date -u +"%Y-%m-%dT%H:%M:%SZ"`
- 将当前日期显示为 unix 时间戳(自 1970-01-01 00:00:00 以来的秒数)
- 将当前日期显示为 unix 时间戳(自 1970-01-01 00:00:00 以来的秒数)
`date +%s`
- 使用默认格式显示特定日期(格式化指定 UNIX 时间戳):
- 使用默认格式显示特定日期(格式化指定 UNIX 时间戳)
`date -r 1473305798`