1. 程式人生 > >BAT批處理中choice的使用示例

BAT批處理中choice的使用示例

@echo off 
::設定CMD視窗字型顏色為0a 在CMD中輸入命令 color /? 可檢視顏色列表
color 0a
::設定CMD視窗顯示模式為100列寬 20行高
MODE con: COLS=100 LINES=20
echo  -------------------
echo    choice 命令示例
echo  -------------------
echo.
echo.
:: /c按鍵列表 /m提示內容 /d預設選擇 /t等待秒數   /d 必須和 /t同時出現
choice  /c abcde /m "請輸入" /d e /t 5

::使用者選擇的結果會按專案序號數字(從1開始)返回在errorlevel變數中
if %errorlevel%==1 echo 你選擇了a
if %errorlevel%==2 echo 你選擇了b
if %errorlevel%==3 echo 你選擇了c
if %errorlevel%==4 echo 你選擇了d
if %errorlevel%==5 echo 你選擇了e