bash shell计算时间差

前端之家收集整理的这篇文章主要介绍了bash shell计算时间差前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
function getTiming() {
start=$1
end=$2
start_s=$(echo $start | cut -d '.' -f 1)
start_ns=$(echo $start | cut -d '.' -f 2)
end_s=$(echo $end | cut -d '.' -f 1)
end_ns=$(echo $end | cut -d '.' -f 2)
time=$(( ( 10#$end_s - 10#$start_s ) * 1000 + ( 10#$end_ns / 1000000 - 10#$start_ns / 1000000 ) ))
echo "$time ms"

}

start=$(date +%s.%N) end=$(date +%s.%N) runtime=$(getTiming $start $end) echo "runtime: "$runtime

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

猜你在找的Bash相关文章