欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

linux下使用shell计时

程序员文章站 2024-01-24 09:03:28
...

需要做一些benchmark,但是对应的文件不能写入时间函数来直接回显,因此就打算用shell命令来控制时间的输出,此处的输出的时间为ms。

#/bin/bash
declare starttime=`date +%s%N`
declare endtime=`date +%s%N`
c=`expr $endtime - $starttime`
# do something 

# end do something
c=`expr $c / 1000000`
echo "$c ms"