我正在制作一个"操作方法" Notepad中的批处理文件。我试图演示goto
命令,我想继续。我试过了pause
,但后来我发现它不会起作用,所以我不知道该怎么做。这是我代码的一部分......
:start
echo This is the goto command
goto:start
pause
cls
echo That is the product of the goto command
我尝试了pause
和cls
。
答案 0 :(得分:0)
要演示一个简单的无条件goto
命令,这样做会更好:
echo this is before
goto :continue
echo this line is never reached.
:continue
echo this is after the "goto"
(这是一个“向前”跳跃。你的是一个“向后”的跳跃)