PowerShell do While循环语句示例
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PowerShell do While循环语句示例相关的知识,希望对你有一定的参考价值。
$response = ""
do
{
$response = Read-Host "type something"
}
while ($response -ne "quit")
<#
type something: aaa
type something: bbb
type something: ccc
type something: quit
#>
您也可以关注下方微信公众号获取更多内容
以上是关于PowerShell do While循环语句示例的主要内容,如果未能解决你的问题,请参考以下文章