在PowerShell中是否有一种简单的方法来计时命令的执行,就像Linux中的'time'命令一样? 我想到了这个:
$s=Get-Date; .\do_something.ps1 ; $e=Get-Date; ($e - $s).TotalSeconds
但我想要简单点的,比如
time .\do_something.ps1
在PowerShell中是否有一种简单的方法来计时命令的执行,就像Linux中的'time'命令一样? 我想到了这个:
$s=Get-Date; .\do_something.ps1 ; $e=Get-Date; ($e - $s).TotalSeconds
但我想要简单点的,比如
time .\do_something.ps1
当前回答
简单的
function time($block) {
$sw = [Diagnostics.Stopwatch]::StartNew()
&$block
$sw.Stop()
$sw.Elapsed
}
然后可以用as
time { .\some_command }
您可能需要调整输出
其他回答
到目前为止,所有的答案都没有达到提问者(和我)想要通过在命令行开头添加“time”来计时的愿望。相反,它们都需要将命令包装在括号({})中以构成一个块。下面是一个简短的函数,在Unix上更像时间:
Function time() {
$command = $args -join ' '
Measure-Command { Invoke-Expression $command | Out-Default }
}
Yup.
Measure-Command { .\do_something.ps1 }
注意,Measure-Command的一个小缺点是看不到标准输出。
[更新,感谢@JasonMArcher]你可以通过将命令输出输出到一些可写入主机的命令集来修复这个问题,例如Out-Default,这样它就变成:
Measure-Command { .\do_something.ps1 | Out-Default }
查看输出的另一种方法是使用。net Stopwatch类,像这样:
$sw = [Diagnostics.Stopwatch]::StartNew()
.\do_something.ps1
$sw.Stop()
$sw.Elapsed
您还可以从历史记录中获取最后一个命令,并从它的StartExecutionTime中减去它的EndExecutionTime。
.\do_something.ps1
$command = Get-History -Count 1
$command.EndExecutionTime - $command.StartExecutionTime
下面是我写的一个函数,它的工作原理类似于Unix的time命令:
function time {
Param(
[Parameter(Mandatory=$true)]
[string]$command,
[switch]$quiet = $false
)
$start = Get-Date
try {
if ( -not $quiet ) {
iex $command | Write-Host
} else {
iex $command > $null
}
} finally {
$(Get-Date) - $start
}
}
来源:https://gist.github.com/bender-the-greatest/741f696d965ed9728dc6287bdd336874
(measure-commmand{your command}).totalseconds
例如
(measure-commmand{.\do_something.ps1}).totalseconds