码迷,mamicode.com
首页 > 系统相关 > 详细

shell 脚本执行时间

时间:2017-05-10 17:49:14      阅读:401      评论:0      收藏:0      [点我收藏+]

标签:shell 脚本执行时间

计算脚本执行时间:

 #!/bin/bash

 UseTime () {

     startTime=`date +%Y%m%d-%H:%M`

     startTime_s=`date +%s`

     $Command              #根据自己脚本路径,测试脚本文件执行时间(sh test.sh)

     endTime=`date +%Y%m%d-%H:%M`

     endTime_s=`date +%s`

     sumTime=$[ $endTime_s - $startTime_s ]

     useTime=$[ $sumTime / 60 ]

     echo "$startTime ---> $endTime" "Totl:$useTime minutes"  >> /tmp/usertime.txt

 }

 

 hello () {

     echo "hello !"

     sleep 120

 }

 

 Command=hello

 UseTime $Command


计算脚本使用时间分钟

cat /tmp/usertime.txt 

20170510-14:54 ---> 20170510-14:56 Totl:2 minutes


shell 脚本执行时间

标签:shell 脚本执行时间

原文地址:http://zhizhimao.blog.51cto.com/3379994/1924140

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!