gpt4 book ai didi

powershell - 以分钟和秒为单位测量执行时间

转载 作者:行者123 更新时间:2023-12-01 07:35:10 24 4
gpt4 key购买 nike

我想在自动化 PowerShell 脚本中多次测量。我使用了 Get-Date 和 TotalSeconds。结果看起来像这样:236.908

如何以分钟和秒为单位获得人类可读的耗时?

$startTime = (Get-Date)
$endTime = (Get-Date)

$ElapsedTime = (($endTime-$startTime).TotalSeconds)

Write-Host "Duration: xx min xx sec"

最佳答案

使用 format operator ( -f ):

'Duration: {0:mm} min {0:ss} sec' -f ($endTime-$startTime)

或者像这样,如果您还需要其他地方的差异:
$ElapsedTime = $endTime-$startTime
'Duration: {0:mm} min {0:ss} sec' -f $ElapsedTime

关于powershell - 以分钟和秒为单位测量执行时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41660813/

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