I have the following batch script:

set logFile=%1_%time:~0,2%_%time:~3,2%.log

set logFile=%logFile: =%

Does anyone know what the second line is all about?

link|improve this question
feedback

2 Answers

up vote 5 down vote accepted

It says replace all spaces with nothing. If logfile was "This Is a Test" then after the second line, it would be "ThisIsaTest" (spaces equal nothing)

link|improve this answer
feedback

MultiverseIT described what's going on. For more detail on environment variable substitution, look at the help for the SET command

Set /?

on the command line

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.