What does “@” mean in Windows batch scripts

前端 未结 7 1651
遥遥无期
遥遥无期 2020-12-02 07:12

I saw @ is used in such contexts:

@echo off

@echo start eclipse.exe

What does @ mean here?

相关标签:
7条回答
  • 2020-12-02 07:31

    It inherits the meaning from DOS. @:

    In DOS version 3.3 and later, hides the echo of a batch command. Any output generated by the command is echoed.

    Without it, you could turn off command echoing using the echo off command, but that command would be echoed first.

    0 讨论(0)
提交回复
热议问题