gpt4 book ai didi

dos - 如何在批处理脚本中从控制台返回单个字符而不按 Enter 键?

转载 作者:行者123 更新时间:2023-12-01 22:10:42 26 4
gpt4 key购买 nike

我想从批处理脚本中读取/返回单个字符,而无需按 Enter 键,就像 C/C++ 中的 getChar() 一样。我该怎么做?

最佳答案

使用CHOICE命令

示例借自 this site

   @echo off
:menu
cls
echo.
echo A - Text for item A
echo B - Text for item B
echo C - End
echo.
choice /c:ABC > nul
if errorlevel 3 goto end
if errorlevel 2 goto B
if errorlevel 1 goto A
echo Error... choice not installed
goto end
:A
echo Commands for item A
pause
goto menu
:B
echo Commands for item B
pause
goto menu
:end

关于dos - 如何在批处理脚本中从控制台返回单个字符而不按 Enter 键?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13166100/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com