当前位置:网站首页>date command
date command
2022-08-01 01:10:00 【HUAWEI CLOUD】
时间相关的指令
date显示
语法:date 选项 格式
功能:用于显示时间,设置时间,完成时间与时间戳之间的相互转换等
用途
1.在显示方面,使用者可以设定欲显示的格式,格式设定为一个加号,后接数个标记,其中常用的标记列表如下
%H : 小时(00~23)
%M : 分钟(00…59)
%S : 秒(00…61)
%X : 相当于 %H:%M:%S
%d : 日 (01…31)
%m : 月份 (01…12)
%Y : 完整年份 (0000…9999)
%F : 相当于 %Y-%m-%d
用途2.在设定时间方面
date -s :设置当前时间,只有root权限才能设置,Other ordinary users can only view.
date -s 20080523 //set the date to20080523,这样会把具体时间设置成空00:00:00
date -s 01:01:01 //设置具体时间,不会对日期做更改
date -s “01:01:01 2008-05-23″ //This allows you to set the date and time at the same time
date -s “01:01:01 20080523″ //This allows you to set the date and time at the same time
date -s “2008-05-23 01:01:01″ //This allows you to set the date and time at the same time
date -s “20080523 01:01:01″ //This allows you to set the date and time at the same time
用途3.时间戳 完成时间与时间戳之间的相互转换
什么是时间戳: 当前时间和计算机起始时间(1970年1月1日)的差值,单位为秒
Unix时间戳(英文为Unix epoch, Unix time, POSIX time 或 Unix timestamp)是从1970年1月1日(UTC/GMT的午夜)开始所经过的秒数,不考虑闰秒.
1)时间->时间戳:date +%s
时间戳: 1970/01/01/00:00累计到现在的秒数,给程序看的
2)时间戳->时间:date [email protected]
边栏推荐
猜你喜欢
随机推荐
Pylint检查规则中文版
GDB 源码分析系列文章五:动态库延迟断点实现机制
元宇宙改变人类工作模式的四种方式
声称AI存在意识,谷歌工程师遭解雇:违反保密协议
MYSQL索引解析
MYSQL主从复制
Kyoto University:Masaki Waga | 黑箱环境中强化学习的动态屏蔽
Web API Introduction and Types
【 】 today in history: on July 31, "brains in vats" the birth of the participant;The father of wi-fi was born;USB 3.1 standard
July Bootcamp (Day 31) - Status Compression
What practical projects can machine learning beginners learn?
In 2022, the latest eight Chongqing construction members (electrical construction workers) simulation question bank and answers
Academicians of the two academies speak bluntly: Don't be superstitious about academicians
Application of integrated stepper motor in UAV automatic airport
WAASAP WebClient UI页面标签的决定逻辑介绍
两院院士直言:不要迷信院士
继承的注意事项
欧拉系统(euleros):升级Mysql
What is the meaning of JS timestamp?Know SQL will consider to add a timestamp, JS timestamp for the scene?
LeetCode每日一练 —— 环形链表问题(面试四连问)