NotePublic/Software/Applications/Date/Date_命令说明.md

33 lines
758 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 命令说明
Linux 一共有两个时钟,分别是:
* 硬件时钟RTC=Real Time Clock指主机板上的时钟设备也就是通常可在BIOS画面设定的时钟。
* 系统时钟:指 kernel 中的时钟。
当 Linux 启动时,系统时钟会去读取硬件时钟的设定,之后系统时钟即独立运作。
Date 命令用于设置系统时钟。
## 显示日期与时间
```bash
#显示当前日期与时间
date
# 显示 10s 后的日期与时间
date -d "-10 second"
# 显示后一天的日期与时间
date -d "+1 day"
# 显示上一月的日期与时间
date -d "-1 month"
# 显示下一年的日期与时间
date -d "+1 year"
```
## 修改日期与时间
```bash
date -s "12:12:12"
date -s "2016-12-07 12:00:00"
```