您的位置 首页 shell脚本

统计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"

 

欢迎来撩 : 汇总all

白眉大叔

关于白眉大叔linux云计算: 白眉大叔

热门文章