一.日历命令(cal):
我们可以通过cal命令在命令行显示日历语法如下:
cal [-smjy13] [[[day] month] year]
-1 Display single month output. (This is the default.)-3 Display prev/current/next month output.-s Display Sunday as the first day of the week.-m Display Monday as the first day of the week.-j Display Julian dates (days one-based, numbered from January 1).-y Display a calendar for the current year.例如要查看2014年5月的日历:cal 5 2014-V Display version information and exit.
二.日期命令(date)
可以通过date命令查看当前时间或时间设置等等,常用语法如下:
date [OPTION]... [+FORMAT]
-d "时间字符串": 将字符串转换成日期格式;
date -d "10/12/2014 15:20:20"
-s "时间字符串": 将系统当前时间设置成字符串指定的时间;
date -s "10/12/2014 15:20:20"
将当前时间转换成指定格式: date +"%Y-%m-%d %H:%M:%S",选项释义:%Y year
%d day of month (e.g, 01)
%m month (01..12)
%H hour (00..23)
%M minute (00..59)
%S second (00..60)
%T time; same as %H:%M:%S
三.固件时间(hwclock)
将系统当前时间设置为固件时间(NTP同步可能用到):
hwclock -w
用固件时间覆盖系统当前时间:
hwclock -s