格式:
date[选项][+指定的格式]
参数 | 作用 |
---|---|
%t | 跳格[Tab键] |
%H | 小时(00~23) |
%I | 小时(00~12) |
%M | 分钟(00~59) |
%S | 秒(00~59) |
%j | 今年中的第几天 |
查看系统时间:
[linuxprobe@linuxprobe ~]$ date
Sat Jun 1 10:02:00 CST 2019
按照格式查看系统时间:
[linuxprobe@linuxprobe ~]$ date "+%Y-%m-%d %H:%M:%S"
2019-06-01 10:05:42
设置系统时间:
[linuxprobe@linuxprobe ~]$ sudo date -s "20190601 10:08:00"
[sudo] password for linuxprobe:
Sat Jun 1 10:08:00 CST 2019
查看今天时间年第几天:
[linuxprobe@linuxprobe ~]$ date "+%j"
152
网友评论