选项菜单

Posted on 2019-12-07 15:14  努力成长静待花开  阅读(121)  评论(0编辑  收藏  举报
$repeat=$true
do
{
    Write-Host "1 - MENU"
    Write-Host "2 - MOVE"
    Write-Host "3 - EXIT"
    [int]$selection=Read-Host "make your selection:"
    switch ($selection)
    {
        1{
        }
        2{
        }
        3{
            $repeat=$false
        }
    }
}
while ($repeat)