Never save something for a special occasion. Every day in your life is a special occasion.
分类:
2010-12-28 19:55:00
choice用法(xp)
引自xp的dos帮助:
CHOICE [/C choices] [/N] [/CS] [/T timeout /D choice] [/M text]
Description:
This tool allows users to select one item from a list
of choices and returns the index of the selected choice.
Parameter List:
/C choices 指定选择列表,默认为"YN".
/N 提示中隐藏(不显示)选择列表.
/CS Enables case-sensitive,默认是 case-insensitive.
/T timeout 指定等待时间。0 to 9999. 特别地,使用0表示不等待,并且选择默认值.
/D choice 指定等待超时后默认选择值.此字符必须在 /C 中指定,并且要和/T参数一起使用.
/M text 选择列表之外的提示消息。
/? Help。
NOTE:
Choice的返回值通过环境变量 ERRORLEVEL 返回。 选择列表中第一个选择返回值为1,...。
如果用户输入选择列表以外的字符,则响一声音蜂鸣器。出错时返回 255。如果按 CTRL+BREAK or CTRL+C,则返回 0。提示:
dos返回值约定 When you use ERRORLEVEL parameters in a batch program, list them in decreasing order.
Examples:
CHOICE /?
CHOICE /C YNC /M "Press Y for Yes, N for No or C for Cancel."
CHOICE /T 10 /C ync /CS /D y
CHOICE /C ab /M "Select a for option 1 and b for option 2."
CHOICE /C ab /N /M "Select a for option 1 and b for option 2."
其它:
http://hi.baidu.com/lovehack2006/blog/item/9e4efb64d95d08f7f73654d9.html