批处理文件意外关闭,跳过了一段代码

问题描述 投票:0回答:1

我有一个名为comment.bat的批处理文件。它的内容是:

@echo off
rem Comment1 & echo Comment1
(rem Comment2 & echo Comment2)
( 
  rem Comment3
  echo Comment3
)
echo Comment4

我希望它将导致:

Comment1
Comment2
Comment3
Comment4

但是没有结果!为什么会这样呢?请帮助我。

batch-file comments
1个回答
0
投票

您应该知道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
© www.soinside.com 2019 - 2024. All rights reserved.