don't show batch file command when execute it?

Solution 1:

If I understand your question correctly, I think you want to separate commands on individual lines...

@echo off
command1
command2

Is this what you are looking for?

Solution 2:

Mmmmm....@echo off is what turns off the command echoing. If you want to see your batch file list off your commands as it runs them, don't use @echo off at the start of your script. Also, the @ sign at the start of the line makes just that line not echo. So you could use that to selectively hide the commands you didn't want to see.


--Christopher Karel