shell脚本运行时间
时间: 2023-10-14 15:32:01 浏览: 169
Shell脚本获取进程的运行时间
在shell脚本中统计程序执行时间有几种方法。一种方法是使用date命令来记录开始时间和结束时间,然后计算它们之间的时间差。例如,可以使用以下命令获取开始时间和结束时间,并计算它们之间的差值:
```
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"
```
另一种方法是使用time工具来计算脚本的执行时间。当你运行一个脚本时,在脚本前加上time关键字,例如`time sh xxx.sh`,会返回三个时间数据:
- real:该命令的总耗时,包括用户、系统和IO等待时间。
- user:该命令在用户模式下的CPU耗时,即内核外的CPU耗时,不包括IO等待时间。
- sys:该命令在内核中的CPU耗时,不包括IO和时间片切换耗时。
使用这两种方法之一,你可以方便地统计shell脚本的运行时间。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [【Shell】Shell时间相关|统计Shell脚本执行时间|sleep](https://blog.csdn.net/bandaoyu/article/details/115525067)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文