百度了一下date用法,总结如下:
- 直接显示 [[email protected] ~]# date
Thu Oct 22 20:44:51 CST 2015 - 显示日期 [[email protected] ~]# date +%F
2015-10-22 - 显示时间[[email protected] ~]# date +%T
20:46:50
====================其他选项,man date查看================
%Y表示年
%m表示月
%d表示天
%H表示小时(表示的时间是00-23)
%M表示分钟
%S表示秒
%s(表示unix时间戳的秒数)
========================================================
4. 设置日期时间
[[email protected] ~]# date -s "2015-10-22 20:49:22"
Thu Oct 22 20:49:22 CST 2015
[[email protected] ~]# date -s 2013-1-5
Sat Jan 5 00:00:00 CST 2013
[[email protected] ~]# date -s 20:22:22
Sat Jan 5 20:22:22 CST 2013
5. 关于硬件时间hwclock和系统时间
[[email protected] ~]# hwclock
Thu 22 Oct 2015 08:51:24 PM CST -1.055292 seconds
[[email protected] ~]# hwclock --hctosys
[[email protected] ~]# date
Thu Oct 22 20:51:50 CST 2015
===========hctosys,systohc===hw写入sys,sys写入hw=========================
时间: 2024-11-03 18:48:26