**:
獲得當天的日期
date +%y-%m-%d
輸出: 2011-07-28
將當前日期賦值給date變數
date=$(date +%y%m%d)
有時候我們需要使用今天之前或者往後的日期,這時可以使用date的 -d引數
獲取明天的日期
date -d next-day +%y%m%d
獲取昨天的日期
date -d last-day +%y%m%d
獲取上個月的年和月
date -d last-month +%y%m
獲取下個月的年和月
date -d next-month +%y%m
獲取明年的年份
date -d next-year +%y
獲取幾天前(後)的日期
date -d n-day +%y%m%d (n為正時表示n天後,n為負時表示n天前)
Linux 使用date命令獲取時間
很多時候需要各種格式的時間,因此date就到了大顯身手的時候。root centos 7 2 date tue aug 7 16 24 09 cst 2018 root centos 7 2 root centos 7 2 date y m d h m s 2018 08 07 16 27 37 r...
Date的各種使用方法
date物件方法 首先得先建立乙個時間物件new date get系列 getdate 返回乙個月中的某一天 1 31 getday 返回一周中的某一天 0 6 getfullyear 返回四位數的年份 getmonth 返回月份 0 11 0是一月 gethours 返回的是當前的小時 0 23 ...
Date的各種使用方法
首先建立物件 date date new date get系列 getdate 返回乙個月中的某一天 1 31 getday 返回一周中的某一天 0 6 getfullyear 返回四位數的年份 getmonth 返回月份 0 11 0是一月 gethours 返回的是當前的小時 0 23 getm...