51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

统计shell脚本执行时间

统计Shell脚本执行时间,帮助分析改进脚本执行

用 date 相减

#!/bin/bash
 
startTime=`date +%Y%m%d-%H:%M:%S`
startTime_s=`date +%s`

#这是执行代码
 
endTime=`date +%Y%m%d-%H:%M:%S`
endTime_s=`date +%s`
 
sumTime=$[ $endTime_s - $startTime_s ]
 
echo "$startTime ---> $endTime" "Total:$sumTime seconds"

赞(0)
未经允许不得转载:工具盒子 » 统计shell脚本执行时间