Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Shell calculates script execution time

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/02 Report--

Calculate the script execution time:

#! / bin/bash

UseTime () {

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

StartTime_s= `date +% s`

$Command # Test script file execution time (sh test.sh) according to your own script path

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

Calculate the script usage time in minutes

Cat / tmp/usertime.txt

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

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report