CMD - 在输入中使用空格来设置/ p

时间:2016-02-29 17:56:16

标签: cmd

好吧所以我正在尝试制作一个聊天程序,基本上如果我在set / p命令中键入任何空格,它就会关闭窗口。 码: 聊天室

echo User: %account%
echo Chatting with: %sndaccount%
echo.
set /p output=<data/%sndaccount%_input.txt
echo Receive: %output%
set /p input=Send: 
echo "%input%">data/%account%_input.txt


if %input%==!exit (
cls
echo available>data/%account%check.txt
exit
)
cls
goto chatroom

如果我在set /p input=Send:命令中用空格EX:Hello World键入任何内容,它将关闭窗口(崩溃)。

我该怎么做才能防止它崩溃?

0 个答案:

没有答案