What does :: (double colon) mean in DOS batch files? -


i found program http://baiyunmanor.com/blog/work/get-current-date-time-in-dos-batch-file/

but don't know line

:: datetime.bat 

at end mean?

:: (also called comment label) comment rem is.

there differences between them. main ones are:

  • with echo on rem line showed not line commented ::
  • a :: can execute line end caret (that is, ^ @ end of line starting :: makes next line comment).
  • labels , :: have special logic , can cause problems in parenthesis blocks - take care when using them inside ( ).

Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -