gpt4 book ai didi

web-services - 10 分钟的写入进度 PowerShell

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

大家好,有没有一种方法可以显示 10 分钟的进度条,并统计完成 10 分钟剩余多少时间的百分比?使用写入进度。

最佳答案

如果我正确理解了这个问题,目标是展示一些额外的
进度消息中的信息。例如,这可以通过使用Activity范围。下面的脚本只显示了这个想法(1 分钟,
较短的测试)。应该修改以反射(reflect)实际需要的格式
要显示的消息和信息。

$time = 60 # seconds, use you actual time in here
foreach($i in (1..$time)) {
$percentage = $i / $time
$remaining = New-TimeSpan -Seconds ($time - $i)
$message = "{0:p0} complete, remaining time {1}" -f $percentage, $remaining
Write-Progress -Activity $message -PercentComplete ($percentage * 100)
Start-Sleep 1
}

进度如下:
57 % complete, remaining time 00:00:26
Processing
[oooooooooooooooooooooooooooooooooooooooooooooooooooooo

关于web-services - 10 分钟的写入进度 PowerShell,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13333223/

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