Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在命令后创建换行符set /P?我希望用户能够在新的(空白)行上输入,而不是在现有提示旁边输入。例如:
set /P
set /P test=type now echo %test%
此代码只是让用户在提示旁边键入。
如果您想在以下行输入,只需使用:
echo type now set /p test= echo %test%
将echo输出包括换行符在内的提示,然后您只需set /p在没有提示的情况下使用。
echo
set /p