如何找到两个纪元时间戳之间的差异?

如何找到两个纪元时间戳之间的差异?

我正在编写一个脚本来终止运行超过 30 分钟的作业。我的纪元时间格式是这样的1503935475067我正在使用current_time_stamp=`date +%s%3N`

如何找到两个纪元时间戳之间的差异?

答案1

巴什使用双括号

date1=$(date +%s%3N)
date2=1503935475067

if  (( ($date1-$date2)/60000 > 30 )); then
    # do something
fi

相关内容