我写了一个小脚本,它会提示我输入,将输入保存到文本文件中,然后关闭 PC。这是代码的样子:
@ECHO OFF
set /p input=Insert text:
echo %DATE%: %input% >> text.txt
echo The system will shutdown...
shutdown -s -f -t 3
当我执行批处理时,它会提示我并正确保存输入,但在显示后 The system will shutdown...
它并没有关闭,而是重新开始提示我输入。
有谁知道是什么导致了这种行为?