通过shell命令行对时间、时间戳进行转换

通过shell命令行对时间、时间戳进行转换

时间–>时间戳

[root@localhost ~]# date +%s -d "2023-12-04 23:59:59"
1701705599

时间戳–>时间

[root@localhost ~]# date -d @1701705599  +"%Y-%m-%d %H:%M:%S"
2023-12-04 23:59:59

你可能感兴趣的:(shell,时间,时间戳转换)