windows powershell 循环

for (;;)
{
   adb devices
  Start-Sleep -Seconds 1.5
 }

相关解释:
Start-Sleep -Seconds 1.5 表示sleep 1.5秒
adb devices 为android列出设备命令, 在此示例,因此可以改为其他命令

另外一个循环示例

$i=1
for(;$i -le 10;$i++)
{
    Write-Host $i
}

也可以写为一行
for($i=1; $i -le 10; $i++){Write-Host $i}

参见:
https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_for?view=powershell-7.4

https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/start-sleep?view=powershell-7.4

posted @ 2024-10-30 17:00  cyj2024  阅读(10)  评论(0编辑  收藏  举报