Files
tldr/pages.zh/osx/date.md
2019-02-26 18:50:35 +00:00

20 lines
385 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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