shell计算脚本运行时间
时间: 2023-10-01 20:03:49 浏览: 161
你可以使用 `time` 命令来测量 shell 脚本运行时间。在终端中输入以下命令:
```
time ./your-script.sh
```
其中 `your-script.sh` 是你要测量运行时间的脚本。
执行命令后,终端会输出三行信息,分别为实际时间、用户时间和系统时间。其中实际时间是指脚本从开始执行到结束的实际时间,用户时间是指脚本在用户空间中执行的 CPU 时间,系统时间是指脚本在内核空间中执行的 CPU 时间。
例如,执行以下脚本:
```
#!/bin/bash
for i in {1..1000000}; do
echo $i > /dev/null
done
```
使用 `time` 命令测量其运行时间:
```
time ./test.sh
```
输出结果为:
```
real 0m0.564s
user 0m0.119s
sys 0m0.441s
```
可以看出,脚本实际运行时间为 0.564 秒,其中用户时间为 0.119 秒,系统时间为 0.441 秒。
相关问题
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 ]
shell脚本计算程序运行时间
b'shell\xe8\x84\x9a\xe6\x9c\xac\xe8\xae\xa1\xe7\xae\x97\xe7\xa8\x8b\xe5\xba\x8f\xe8\xbf\x90\xe8\xa1\x8c\xe6\x97\xb6\xe9\x97\xb4'表示一个运行在shell脚本计算程序的时间。
阅读全文