shell获取系统当前时间戳

前端之家收集整理的这篇文章主要介绍了shell获取系统当前时间戳前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

shell获取系统当前时间戳:https://blog.csdn.net/c1481118216/article/details/77132270

current=`date "+%Y-%m-%d %H:%M:%S"`  
timeStamp=`date -d "$current" +%s`   
#将current转换为时间戳,精确到毫秒 
currentTimeStamp=$((timeStamp*1000+`date "+%N"`/1000000)) 
echo $currentTimeStamp

linux时间格式转换

原文链接:https://www.f2er.com/bash/387881.html

猜你在找的Bash相关文章