PowerShell while循环语句示例
更新:HHH   时间:2023-1-7


$response = ""
while($response -ne "QUIT")
{
$response = Read-Host "Type something"
}

<#
Type something: aa
Type something: quit
#>

您也可以关注下方微信公众号获取更多资讯

返回系统运维教程...