date command
Contents
date command
输出指定时区的时间
shell 支持在 date 命令前,指定 TZ 参数,即指定时区,这样 dat e输出将会输出指定时区的时间。TZ 是 timezone 的缩写。
|
|
date 打印的日期格式
默认打印12小时制的
|
|
LC_TIME
选择C语言环境的时间格式类别
-d
参数支持自然语言输入,无符号默认为 +
|
|
|
|
日期格式化
|
|
纳秒,毫秒
使用 date +%s%N 可以获得一个纳秒级的unix时间戳(当前时间),然后根据需要截取一部分即可得到毫秒级的精度
|
|
参数
|
|
|
|
http://jerrybear.blog.51cto.com/629421/393097
https://blog.csdn.net/BalterNotz/article/details/52949493
BASH SHELL中可以定义变量显示当前日期
显示当前日期是
DATE=date +%Y%m%d
+号后面是定义格式为年月日
显示前一天为
DATE1=date -d '1 days ago' +%Y%m%d
加-d参数可以设置与当前日期的计算时间,同样,前2天为'2 days ago’,去掉ago则为当前日期之后多少天
以下内容就是网上看到的一篇不错的文章,出自http://www.labri.fr/perso/strandh/Teaching/USI/Common/Sh-utils/sh-utils_65.html
Here are a few examples. Also see the documentation for the `-d’ option in the previous section.
To print the date of the day before yesterday:
date -date='2 days ago’
To print the date of the day three months and one day hence:
date -date='3 months 1 day’
To print the day of year of Christmas in the current year:
date -date='25 Dec’ +%j
To print the current full month name and the day of the month:
date ‘+%B %d’
But this may not be what you want because for the first nine days of the month, the %d' expands to a zero-padded two-digit field, for example
date -d 1may ‘+%B %d” will print `May 01’.
To print a date without the leading zero for one-digit days of the month, you can use the (GNU extension) - modifier to suppress the padding altogether.
date -d=1may ‘+%B %-d’
To print the current date and time in the format required by many non-GNU versions of date when setting the system clock:
date +%m%d%H%M%Y.%S
To set the system clock forward by two minutes:
date –set='+2 minutes’
To print the date in the format specified by RFC-822, use`date -rfc’. I just did and saw this:
Mon, 25 Mar 1996 23:34:17 -0600
To convert a date string to the number of seconds since the epoch (which is 1970-01-01 00:00:00 UTC), use the --date' option with the
%s’ format. That can be useful in sorting and/or graphing and/or comparing data by date. The following command outputs the number of the seconds since the epoch for the time one second later than the epoch, but in time zone five hours later (Cambridge, Massachusetts), thus a total of five hours and one second after the epoch:
date -date='1970-01-01 00:00:01 UTC +5 hours’ +%s
18001
Suppose you had not specified time zone information in the example above. Then, date would have used your computer’s idea of the time zone when interpreting the string. Here’s what you would get if you were in Greenwich, England:
local time zone used
date -date='1970-01-01 00:00:01’ +%s
If you’re sorting or graphing dated data, your raw date values may be represented as seconds since the epoch. But few people can look at the date `946684800’ and casually note “Oh, that’s the first second of the year 2000.”
date -date='2000-01-01 UTC’ +%s
946684800
To convert such an unwieldy number of seconds back to a more readable form, use a command like this:
date -d ‘1970-01-01 946684800 sec’ +”%Y-%m-%d %T %z”
2000-01-01 00:00:00 +0000
https://blog.csdn.net/shanliangliuxing/article/details/16821175
Author -
LastMod 2018-06-20