date命令用法
- date +%Y-%m-%d, date +%y-%m-%d 年月日
- date +%H:%M:%S = date +%T 時間
- date +%s 時間戳
- date -d @1504620492
- date -d "+1day" 一天後
- date -d "-1 day" 一天前
- date -d "-1 month" 一月前
- date -d "-1 min" 一分鐘前
- date +%w, date +%W 星期
date命令用法
- date命令,會顯示當前系統時間日期
[root@hf-01 ~]# date
2018年 01月 14日 星期日 06:13:14 CST
[root@hf-01 ~]#
- date命令,在shell中用處很是大;對文件後綴增長一個時間,以便後期管理
- date +%Y-%m-%d, date +%y-%m-%d 年月日
[root@hf-01 ~]# LANG=en 切換爲英文顯示
[root@hf-01 ~]# date
Sun Jan 14 06:19:49 CST 2018
[root@hf-01 ~]# date +%Y
2018 四位的年
[root@hf-01 ~]# date +%y
18 兩位的年
[root@hf-01 ~]# date +%m
01 月份
[root@hf-01 ~]# date +%M
20 分鐘
[root@hf-01 ~]# date +%d
14 日期
[root@hf-01 ~]# date +%D
01/14/18 直接標記年月日,不過格式比較特殊
[root@hf-01 ~]# date +%Y%m%d
20180114 年月日
[root@hf-01 ~]# date +%F
2018-01-14 年月日,這種帶橫槓的
[root@hf-01 ~]#
- 常見時間單位
[root@hf-01 ~]# date +%w
0 表示周幾
[root@hf-01 ~]# date +%W
02 今年的第幾周,今年的第二週
[root@hf-01 ~]# date +%h
Jan 英文的月份
[root@hf-01 ~]# date +%H
06 小時
[root@hf-01 ~]# date +%S
04 秒
[root@hf-01 ~]# date +%s
1515882702 這是一個時間戳,距離1970總共過去多少秒
- 時間其餘標記方法
- date +%H:%M:%S = date +%T 時間
[root@hf-01 ~]# date +%T
06:24:36
[root@hf-01 ~]# date +%H:%M:%S
06:24:36
[root@hf-01 ~]#
- 顯示日曆 cal命令,查看到日期
[root@hf-01 ~]# cal
January 2018
Su Mo Tu We Th Fr Sa
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31
[root@hf-01 ~]#
- 標記以前的日期
- 好比:在作nginx日誌切割的時候,到了凌晨切割日誌,到了零點零分切割的日誌是前一天的日誌。因此把日誌加一個時間標記的話,應標記爲昨天的日期
- 學會用date標記以前的日期
- day、month、year、hour、min後面能夠加 s 能夠不加 s
- 減號- 表示以前的日期,加號 + 表示從今日後的日期
- date -d "-1 day" +%F 顯示前一天的日期
- date -d "-1 month" +%F 顯示上個月的日期
- date -d "-1 years" +%F 顯示上一年的日期
- date -d "+1 hour" +%T 顯示下一小時
- date -d "+1 min" +%T 顯示下一分鐘
[root@hf-01 ~]# date -d "-1 day"
Sat Jan 13 06:47:30 CST 2018
[root@hf-01 ~]# date -d "-1 day" +%F
2018-01-13
[root@hf-01 ~]# date -d "+1 month" +%F
2018-02-14
[root@hf-01 ~]# date -d "+1 year" +%F
2019-01-14
[root@hf-01 ~]# date -d "+1 hour" +%T
08:09:05
[root@hf-01 ~]# date -d "+1 min" +%T
07:11:21
- 時間戳
- date +%s
- 另外一種表現方法,表示時間戳
- date -d @1504620492 就是@後跟時間戳
[root@hf-01 ~]# date +%s
1515885248
[root@hf-01 ~]# date -d @1515885248
Sun Jan 14 07:14:08 CST 2018
[root@hf-01 ~]#
- 若想在linux系統中,把具體的日期換算成時間戳的時候,能夠使用date +%s -d "2018-01-13 07:14:08"
[root@hf-01 ~]# date +%s -d "2018-01-13 07:14:08"
1515798848
[root@hf-01 ~]# date -d @1515798848
Sat Jan 13 07:14:08 CST 2018
[root@hf-01 ~]#