一、获取时间
date:获取当前系统日期及时间
按格式获取时间:date +%Y-%m-%d_%H:%M:%S
ubuntu@ubuntu-virtual-machine:~$ date
2020年 12月 24日 星期四 21:30:22 CST
ubuntu@ubuntu-virtual-machine:~$ date +%Y-%m-%d_%H:%M:%S
2020-12-24_21:46:13
%H : 小时(00..23)
%I : 小时(01..12)
%k : 小时(0..23)
%l : 小时(1..12)
%M : 分钟(00..59)
%p : 显示本地 AM 或 PM
%r : 直接显示时间 (12 小时时制,格式为 hh:mm:ss [AP]M)
%s : 从 1970 年 1 月 1 日 00:00:00 UTC 到当前为为止的秒数
%S : 秒(00..61)
%T : 直接显示时间 (24 小时制)
ubuntu@ubuntu-virtual-machine:~$ date +%H
21
ubuntu@ubuntu-virtual-machine:~$ date +%I
09
ubuntu@ubuntu-virtual-machine:~$ date +%k
21
ubuntu@ubuntu-virtual-machine:~$ date +%l
9
ubuntu@ubuntu-virtual-machine:~$ date +%M
49
ubuntu@ubuntu-virtual-machine:~$ date +%p
下午
ubuntu@ubuntu-virtual-machine:~$ date +%r
下午 09时49分18秒
ubuntu@ubuntu-virtual-machine:~$ date +%s
1608817767
ubuntu@ubuntu-virtual-machine:~$ date +%S
30
ubuntu@ubuntu-virtual-machine:~$ date +%T
21:49:36
%X : 相当于 %H:%M:%S
%Z : 显示时区 %a : 星期几(Sun..Sat)
%A : 星期几 (Sunday..Saturday)
%b : 月份 (Jan..Dec)
%B : 月份 (January..December)
%c : 直接显示期与时间
%d : 日 (01..31)
%D : 直接显⽰⽇期 (mm/dd/yy)
%h : 同 %b
%j : 一年中的第几天 (001..366)
ubuntu@ubuntu-virtual-machine:~$ date +%X
21时50分45秒
ubuntu@ubuntu-virtual-machine:~$ date +%Z
CST
ubuntu@ubuntu-virtual-machine:~$ date +%A
星期四
ubuntu@ubuntu-virtual-machine:~$ date +%b
12月
ubuntu@ubuntu-virtual-machine:~$ date +%B
十二月
ubuntu@ubuntu-virtual-machine:~$ date +%c
2020年12月24日 星期四 21时51分01秒
ubuntu@ubuntu-virtual-machine:~$ date +%d
24
ubuntu@ubuntu-virtual-machine:~$ date +%D
12/24/20
ubuntu@ubuntu-virtual-machine:~$ date +%h
12月
ubuntu@ubuntu-virtual-machine:~$ date +%j
359
%m : 月份 (01..12)
%U : 一年中的第几周 (00..53) ( 以 Sunday 为一周的第几天的情形)
%w : 一周中的第几天 (0..6)
%W :一年中的第几周 (00..53) ( 以 Monday 为几周的第几天的情形)
%x : 直接显示日期 (mm/dd/yy)
%y : 年份的最后两位数字 (00.99)
%Y : 完整年份 (0000..9999)
ubuntu@ubuntu-virtual-machine:~$ date +%m
12
ubuntu@ubuntu-virtual-machine:~$ date +%u
4
ubuntu@ubuntu-virtual-machine:~$ date +%w
4
ubuntu@ubuntu-virtual-machine:~$ date +%W
51
ubuntu@ubuntu-virtual-machine:~$ date +%x
2020年12月24日
ubuntu@ubuntu-virtual-machine:~$ date +%y
20
ubuntu@ubuntu-virtual-machine:~$ date +%Y
2020
二、设置时间
date -s:设置系统日期及时间,时间日期的设置需要root权限
date -s 20201224 //设置成2020年12月24日,时间设置成00:00:00
date -s 2020-12-24
date -s 12:20:30 //设置时间为12:20:30
ubuntu@ubuntu-virtual-machine:~$ sudo date -s 20201224
2020年 12月 24日 星期四 00:00:00 CST
ubuntu@ubuntu-virtual-machine:~$ sudo date -s 2020-12-25
2020年 12月 25日 星期五 00:00:00 CST
ubuntu@ubuntu-virtual-machine:~$ sudo date -s 12:20:30
2020年 12月 24日 星期四 12:20:30 CST