What does “@” mean in Windows batch scripts
It means not to output the respective command. Compare the following two batch files: and The former has only foo as output while the latter prints (here, at least). As can be seen the command that is run is visible, too. echo off will turn this off for the complete batch file. However, the echo … Read more