计算shell脚本的执行时间

一. 秒级别

#!/bin/bash

start_time=`date --date='0 days ago' "+%Y-%m-%d %H:%M:%S"`
 
#this is your shell script 
sleep 1
 
##############
finish_time=`date --date='0 days ago' "+%Y-%m-%d %H:%M:%S"`
 
duration=$(($(($(date +%s -d "$finish_time")-$(date +%s -d "$start_time")))))
 
echo "this shell script execution duration: $duration"

执行如下命令:

chmod +x time_s.sh
./time_s.sh

结果:

二.毫秒级别

#!/bin/bash

function timediff() {
# time format:date +"%s.%N", such as 1502758855.907197692
    start_time=$1
    end_time=$2

    start_s=${start_time%.*}
    start_nanos=${start_time#*.}
    end_s=${end_time%.*}
    end_nanos=${end_time#*.}

    # end_nanos > start_nanos? 
    # Another way, the time part may start with 0, which means
    # it will be regarded as oct format, use "10#" to ensure
    # calculateing with decimal

    if [ "$end_nanos" -lt "$start_nanos" ];then
        end_s=$(( 10#$end_s - 1 ))
        end_nanos=$(( 10#$end_nanos + 10**9 ))
    fi

# get timediff
    time=$(( 10#$end_s - 10#$start_s )).`printf "%03dn" $(( (10#$end_nanos - 10#$start_nanos)/10**6 ))`
    echo $time
}

start=$(date +"%s.%N")

# Now exec some command
sleep 1.2563

end=$(date +"%s.%N")
# here give the values

#start=1502758855.907197692

#end=1502758865.066894173


timediff $start $end

执行如下命令:

chmod +x time_s.sh
./time_ms.sh

结果:

 

参考:

https://blog.csdn.net/u010339879/article/details/75949076

https://www.lagou.com/lgeduarticle/2266.html

https://blog.csdn.net/weixin_34050427/article/details/85934782

  • 2
    点赞
  • 10
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值