我有一个名为comment.bat的批处理文件。它的内容是:
@echo off
rem Comment1 & echo Comment1
(rem Comment2 & echo Comment2)
(
rem Comment3
echo Comment3
)
echo Comment4
我希望它将导致:
Comment1
Comment2
Comment3
Comment4
但是没有结果!为什么会这样呢?请帮助我。
您应该知道DOS将显示(但不对其执行操作)在REM命令的行[[after中输入的注释。
@echo off
rem Comment1 & echo Comment1
rem Comment1 && echo Comment2
(
echo Comment1
echo Comment2
rem Comment3
echo Comment3)
echo Comment4
pause>nul
帮助= Link2