What's the equivalent of # for Windows cmd console sessions, to create a comment?
The operating system is Windows XP.
What's the equivalent of # for Windows cmd console sessions, to create a comment?
The operating system is Windows XP.
REM is the standard way:
REM this is a comment
You could also use the double-colon convention commonly seen in batch files:
:: another comment
A single colon followed by a string is a label, but a double colon and anything after it are silently ignored. One could argue that this form is more legible than the REM command.
Note that both of these methods only work at the beginning of a line. If you want to append a comment to a command, you can use them with the command concatenation character (&), like this:
dir & REM a comment
dir &:: another one
You prefix your comment with the word REM.
REM This is a comment.
But if you want your comment printed back to you, you should echo it:
echo This is a comment you'll see.
The REM command only remarks (i.e. Say something as a comment) the line from being executed. However, if @echo off is not in the batch file that line will still echo to the screen.
To prevent these lines from being shown you can do one of three things.
I believe the answer provided by bernhard is incorrect.
At least through win 7,
rem comment
in a batch file will print in the output. To suppress printing, use
@ rem comment
or
@rem comment
The same goes for other commands, which by default are echoed to the console.
Everything started after exit (with a parentheses) is regarded as comment:
REM CODE
exit /b 0
(Hi
I am a comment
I am also the same