回答怎样让脚本返回最开始再次执行?2015年9月24日 来自 codecook function a{…}function b{…}function c{…} while(1) { $answer=read-host “Please enter which function you want to use” switch($answer){‘1’{a}‘2’{b}‘3’{c}} }