在Java程序中,我通常使用以下函数来描述时间信息:
...
long start = System.currentTimeMillis();
...
...
System.out.println("elapsed time 1: "+(System.currentTimeMills() - start));
...
...
start = System.currentTimeMillis();
...
System.out.println("elapsed time 2: "+(System.currentTimeMills() - start));
...
如何在shell bash中做类似的事情?此外,如果存在循环,如何收集累计时间?
e.g。
for ((i=0;i<$lines;i=i+$step))
do
head -$((i+step)) $1 | tail -$step > tmp1
head -$((i+step)) $2 | tail -$step > tmp2
setstr=$setstr' '`./accuracy.sh tmp1 tmp2`
done
echo $setstr | awk '{for (i=1;i<=NF;i++) sum+=$i; }END{print sum/NF}'
我想分别分析累积的head/tail
时间和accuracy.sh tmp1 tmp2
时间。
答案 0 :(得分:6)
您可以使用适当命名的time
命令为您希望使用的命令添加前缀。
例如:
time find . -type f -name hello_world.cc
或者在你的情况下:
time head -$((i+step)) $1 | tail -$step > tmp1
time head -$((i+step)) $2 | tail -$step > tmp2
time setstr=$setstr' '`./accuracy.sh tmp1 tmp2`
请注意,时间输出到tty
,因此您无需担心时间写入tmp1
或tmp2
等的结果。
如果您想要查看实时更新的总耗用时间(自脚本开始运行以来),您可以执行以下操作:
在脚本开始时,请记下系统时间:
start_timestamp=$(date +%s)
然后启动你的实际脚本main:
# Do your execution here
然后在你的循环中,无论你想看到到目前为止经过时间的输出
curr_timestamp=$(date +%s)
elapsed_time=$(expr $end_time - $start_time)
echo "Elapsed: $elapsed_time" >> elapsed_time.log