gpt4 book ai didi

powershell - 如何在PowerShell中找到最短执行时间?

转载 作者:行者123 更新时间:2023-12-02 23:25:30 27 4
gpt4 key购买 nike

我一直在PowerShell中使用Measure-Command来设置Python脚本的执行时间:

Measure-Command{C:\Python27\python.exe script.py}

这将以多种形式显示执行时间,包括 TotalSeconds

为了最小化开销的影响,我想运行10次脚本,并在10次运行中找到最小的 TotalSeconds值。在PowerShell中有一种简单的方法吗?

最佳答案

使用Measure-Object命令,就像this SO answer一样:

C:\PS> 1..10 | % { Measure-Command { C:\Python27\python.exe script.py } } | Measure-Object -Minimum

Count : 3
Average :
Sum :
Maximum :
Minimum : 00:00:00.0095165
Property :

关于powershell - 如何在PowerShell中找到最短执行时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38113055/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com