Friday, June 19, 2015

@echo OFF

...seems to commonly be the first line in a .bat file. echo commands following it will write the contents of their lines to the console, while echoing in general is otherwise more or less turned off by @echo off preventing every line in the .bat file from writing gunk out to the console (unless one is, yes, explictly echoing) and also hiding the command prompt.

No comments:

Post a Comment