📜  powershell 进度条 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:44.731000             🧑  作者: Mango

代码示例1
foreach ($i in 1..100) {
  Write-Progress -Activity "Testing" -Status "$i% Complete:" -PercentComplete $i
  Start-Sleep -Milliseconds 100
}