vote up 2 vote down star

I see it a few times in my batch script, however I'm not certain what it actually does. The two occurrences of it are below an @echo (which prints out the text following it to the console) and are exact duplicates of the text that is printed with @echo.

flag

4 Answers

vote up 9 vote down check

Not surprisingly, it sets the title of the command prompt window the batch is running in. The leading @ keeps the line from being echo'd to the prompt.

link|flag
vote up 1 vote down

It "specifies the title for the command prompt window" (found by running title /?).

link|flag
Interesting...I've never seen it actually change the title of the window before... – Thomas Owens Sep 29 at 17:43
vote up 3 vote down

It sets the title of the current command window title bar.

If you run the following script as a batch file, you will see an example:

@title = "My Title"
pause
link|flag
vote up 14 vote down
  • @ means "don't echo this, just run it."
  • title lets you set the title of the cmd.exe window.

Try title /? from the command prompt.

link|flag

Your Answer

Get an OpenID
or

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