Windows批处理脚本中是否存在多行代码块注释的语法?我知道REM
和::
的逐行注释,但对代码块进行注释效率不高。
我正在寻找像PHP下面的块评论样式:
/*
This is multi-lines
block comment
*/
答案 0 :(得分:0)
我认为,这可以达到目的
goto:skip1
echo This line should not get executed
format c: & echo nor this line
:skip1
答案 1 :(得分:0)
批处理脚本中没有这样的东西。
(不包括......)
答案 2 :(得分:0)
你可以使用看起来更好的这个技巧......
@echo off
setlocal
set comment=goto endcomment
echo This line is executed
%comment%
echo These lines
echo are commented out...
:endcomment
echo The next line to execute
%comment%
You may place here
%$#"#% anything you want.... &!>|<()
:endcomment
echo End of example
答案 3 :(得分:0)
没有goto
、rem
和::
的多行注释
@break || (
1 line
2 line
3 line
4 line
5 line
...
)